Beispiel #1
0
 public AdmRateLimitExceededException(string reason, AdmNotification notification)
     : base("Rate Limit Exceeded (" + reason + ")", notification)
 {
     Notification = notification;
     Reason       = reason;
 }
Beispiel #2
0
 public AdmRateLimitExceededException (string reason, AdmNotification notification) 
     : base ("Rate Limit Exceeded (" + reason + ")", notification)
 {
     Notification = notification;
     Reason = reason;
 }
Beispiel #3
0
 public AdmMessageTooLargeException(AdmNotification notification)
     : base("ADM Message too Large, must be <= 6kb", notification)
 {
     Notification = notification;
 }
Beispiel #4
0
 public AdmMessageTooLargeException (AdmNotification notification) 
     : base ("ADM Message too Large, must be <= 6kb", notification)
 {
     Notification = notification;
 }