1234567891011121314151617181920212223 |
- using System;
- namespace Vinno.IUS.Common.Server.Exceptions
- {
- public class ServiceBusException : Exception
- {
- }
- internal class NotServiceMessageException : ServiceBusException
- {
- }
- internal class NoResultException : ServiceBusException
- {
- }
- public class NoMessageHandlerException : ServiceBusException
- {
- }
- }
|