public static object ManufactureExpcetion(Exception ex, DirLinkerStage dirLinkerStage)
 {
     return new DirLinkerException(ex, dirLinkerStage);
 }
 public DirLinkerException(string errorMessage, DirLinkerStage dirLinkerStage)
     : base(errorMessage)
 {
     Stage = dirLinkerStage;
 }
 public DirLinkerException(Exception ex, DirLinkerStage dirLinkerStage)
     : base("Unknown Exception Caught", ex)
 {
     Stage = dirLinkerStage;
 }
Ejemplo n.º 4
0
 public static object ManufactureExpcetion(Exception ex, DirLinkerStage dirLinkerStage)
 {
     return(new DirLinkerException(ex, dirLinkerStage));
 }
Ejemplo n.º 5
0
 public DirLinkerException(string errorMessage, DirLinkerStage dirLinkerStage) : base(errorMessage)
 {
     Stage = dirLinkerStage;
 }
Ejemplo n.º 6
0
 public DirLinkerException(Exception ex, DirLinkerStage dirLinkerStage) : base("Unknown Exception Caught", ex)
 {
     Stage = dirLinkerStage;
 }