예제 #1
0
		internal static void DicomExceptionConstructed(DicomException ex) {
			if (OnException != null) {
				try {
					OnException(ex, new DicomExceptionEventArgs(ex));
				} catch {
				}
			}
		}
예제 #2
0
 internal static void DicomExceptionConstructed(DicomException ex)
 {
     if (OnException != null)
     {
         try {
             OnException(ex, new DicomExceptionEventArgs(ex));
         } catch {
         }
     }
 }
예제 #3
0
 public DicomExceptionEventArgs(DicomException ex)
 {
     Exception = ex;
 }
예제 #4
0
 public DicomExceptionEventArgs(DicomException ex)
 {
     Exception = ex;
 }