Beispiel #1
0
 public OperationNotFoundException(OperationMissingKind kind, string path)
     : base(kind, kind.ToString() + ", Path:" + path)
 {
     this.Path = path;
 }
Beispiel #2
0
 public NegotiateFormatFailedException(OperationMissingKind kind, string ext)
     : base(kind, kind.ToString() + ", Ext:" + ext)
 {
     this.Ext = ext;
 }
Beispiel #3
0
 public MethodNotAllowedException(OperationMissingKind kind, string path, string method)
     : base(kind, kind.ToString() + ", Path:" + path + " Method:" + method)
 {
     this.Path   = path;
     this.Method = method;
 }
Beispiel #4
0
 public ParameterMissingException(OperationMissingKind kind, string parameterName)
     : base(kind, kind.ToString() + ", ParameterName:" + parameterName)
 {
     this.ParameterName = parameterName;
 }
Beispiel #5
0
 public OperationNotFoundException(OperationMissingKind kind, string path)
     : base(kind, kind.ToString() + ", Path:" + path)
 {
     this.Path = path;
 }
Beispiel #6
0
 public MethodNotAllowedException(OperationMissingKind kind, string path, string method)
     : base(kind, kind.ToString() + ", Path:" + path + " Method:" + method)
 {
     this.Path = path;
     this.Method = method;
 }
Beispiel #7
0
 public NegotiateFormatFailedException(OperationMissingKind kind, string ext)
     : base(kind, kind.ToString() + ", Ext:" + ext)
 {
     this.Ext = ext;
 }
Beispiel #8
0
 public ParameterMissingException(OperationMissingKind kind, string parameterName)
     : base(kind, kind.ToString() + ", ParameterName:" + parameterName)
 {
     this.ParameterName = parameterName;
 }