public ExceptionRepository(string message, Exception inner, RepoResultType exType) : base(message, inner)
 {
     ExType = exType;
 }
Beispiel #2
0
 public RepoException(string message, Exception inner, RepoResultType exType) : base(message, inner)
 {
     ExType = exType;
 }
 public ExceptionRepository(RepoResultType exType)
 {
     ExType = exType;
 }
Beispiel #4
0
 public RepoException(RepoResultType exType)
 {
     ExType = exType;
 }