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