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