Example #1
0
 static public Type GetObjectClass(ARMObject <object> obj)
 {
     return(GetObjectClass((Dynamo)obj));
 }
Example #2
0
 public InternalServerError(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #3
0
 public ServiceUnavailable(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #4
0
 public NotFound(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #5
0
 public TooManyRequests(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #6
0
 public Unauthorized(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #7
0
 public NotPermitted(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #8
0
 public TransactionDeclined(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #9
0
 public InvalidAttributes(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #10
0
 public BadRequest(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #11
0
 public UnknownResponse(string message, ARMObject <object> response) : base(message, response)
 {
 }
Example #12
0
 public PayloadError(string message, ARMObject <object> response) : base(message)
 {
     this.response = response;
     this.details  = this.response["details"];
 }