Esempio n. 1
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
     if (!string.IsNullOrEmpty(format))
     {
         Console.WriteLine(format, args);
     }
     else
     {
         Console.WriteLine($"{exception?.Message}; {error}");
     }
     _FastServer.Close();
 }
Esempio n. 2
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
     throw new NotSupportedException();
 }
Esempio n. 3
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
 }
Esempio n. 4
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
     Console.WriteLine(format, args);
 }
Esempio n. 5
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
     throw new RepErrorException(exception, error, format, args);
 }
Esempio n. 6
0
 public RepErrorException(Exception inner, RepError error, string format, params object[] args)
     : base(inner, format, args)
 {
     _error = error;
 }
Esempio n. 7
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
     throw new NotSupportedException();
 }
Esempio n. 8
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
     Console.WriteLine(format, args);
 }
Esempio n. 9
0
 public static ErrorInfoAttribute GetErrorInfo(this RepError error)
 {
     return(Util.GetEnumSingleAttribute <ErrorInfoAttribute, RepError>(error));
 }
Esempio n. 10
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
 }
Esempio n. 11
0
 public void OnError(Exception exception, RepError error, string format, params object[] args)
 {
     throw new RepErrorException(exception, error, format, args);
 }
 public RepErrorException(Exception inner, RepError error, string format, params object[] args)
     : base(inner, format, args)
 {
     _error = error;
 }