Advertisement
AskTomorrow

Untitled

Feb 12th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.65 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace Ismatov_Nozimzhon
  9. {
  10.     class MerchantException : Exception
  11.     {
  12.         public MerchantException()
  13.         {
  14.         }
  15.  
  16.         public MerchantException(string message) : base(message)
  17.         {
  18.         }
  19.  
  20.         public MerchantException(string message, Exception innerException) : base(message, innerException)
  21.         {
  22.         }
  23.  
  24.         protected MerchantException(SerializationInfo info, StreamingContext context) : base(info, context)
  25.         {
  26.         }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement