Esempio n. 1
0
 protected ProxyException(ProxyExceptionType type, SerializationInfo info, StreamingContext context) : base(info, context)
 {
     this.Type = type;
 }
Esempio n. 2
0
 public ProxyException(ProxyExceptionType type, string message) : base(message)
 {
     this.Type = type;
 }
Esempio n. 3
0
 public ProxyException(ProxyExceptionType type, string message, Exception innerException) : base(message, innerException)
 {
     this.Type = type;
 }
Esempio n. 4
0
 public ProxyException(ProxyExceptionType type)
 {
     this.Type = type;
 }