1234567891011121314151617181920212223242526272829303132333435363738394041 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ANT_Managed_Library
- {
-
-
-
- [Serializable]
- public class ANT_Exception: Exception
- {
-
-
-
-
- public ANT_Exception(String exceptionDetail) : base("ANTLibrary Exception: " + exceptionDetail) { }
-
-
-
-
-
- public ANT_Exception(String exceptionDetail, Exception innerException) : base("ANTLibrary Exception: " + exceptionDetail, innerException) { }
-
-
-
-
- public ANT_Exception(ANT_Exception aex) : base(aex.Message) { }
- }
- }
|