예제 #1
0
 public ProjzillaException(string message, ProjzillaExceptionSeverity sev)
     : base()
 {
     Severity = sev;
     s        = message.ToString();
 }
예제 #2
0
 public ProjzillaException(string message, Exception myNew, ProjzillaExceptionSeverity sev)
     : base(message, myNew)
 {
     Severity = sev;
     s        = message.ToString();// Stores new exception message into class member s
 }
예제 #3
0
 public ProjzillaException() : base()
 {
     s        = null;
     Severity = ProjzillaExceptionSeverity.Crash;
 }