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