Beispiel #1
0
 public Generic_Exception(Exception ex, Generic_Exception.ErrorCodes CodeError) : base(ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.ErrorCode = CodeError;
     this.LoggerException();
 }
 public Format_Exception(FormatException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
Beispiel #3
0
 public System_Exception(SystemException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
Beispiel #4
0
 public Argument_Exception(ArgumentException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
 public UnauthorizedAccess_Exception(UnauthorizedAccessException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
 public NullReference_Exception(NullReferenceException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
 public Arithmetic_Exception(ArithmeticException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
Beispiel #8
0
 public InputOutput_Exception(IOException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
 public Database_Exception(DbException ex) : base(ex.Message, ex)
 {
     this.ErrorGUI = Guid.NewGuid();
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
Beispiel #10
0
 public InvalidCast_Exception(InvalidCastException ex) : base(ex.Message, ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.LoggerException();
 }
 public CustomExceptions(Exception ex, CustomExceptions.ErrorCodes CodeError) : base(ex)
 {
     LoggerConfiguration.DefaultSetup();
     this.ErrorCode = CodeError;
     this.LoggerException();
 }