ServiceBusException.cs 362 B

1234567891011121314151617181920212223
  1. using System;
  2. namespace Vinno.IUS.Common.Server.Exceptions
  3. {
  4. public class ServiceBusException : Exception
  5. {
  6. }
  7. internal class NotServiceMessageException : ServiceBusException
  8. {
  9. }
  10. internal class NoResultException : ServiceBusException
  11. {
  12. }
  13. public class NoMessageHandlerException : ServiceBusException
  14. {
  15. }
  16. }