source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet/BMXNetException.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 733 bytes
Line 
1using System;
2using System.Runtime.Serialization;
3
4namespace IndianHealthService.BMXNet
5{
6 /// <summary>
7 /// This simple exception wrapper is used for Exceptions thrown by umknown sources and
8 /// by the BMX library. Check the InnerException for details.
9 /// </summary>
10 [Serializable]
11 public class BMXNetException : System.ApplicationException
12 {
13 public BMXNetException()
14 {
15
16 }
17 public BMXNetException(string message) : base(message)
18 {
19
20 }
21 public BMXNetException(string message, Exception inner) : base(message, inner)
22 {
23
24 }
25 // deserialization constructor
26 public BMXNetException(SerializationInfo info,
27 StreamingContext context):
28 base(info, context)
29 {
30
31 }
32
33 }
34}
Note: See TracBrowser for help on using the repository browser.