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