Last change
on this file since 1036 was 815, checked in by Sam Habiel, 14 years ago |
Initial commit of C# Source Code. Now to try to get it to compile.
|
File size:
616 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Runtime.Serialization;
|
---|
3 |
|
---|
4 | namespace IndianHealthService.BMXNet
|
---|
5 | {
|
---|
6 | /// <summary>
|
---|
7 | /// Custom exception class for BMXNet
|
---|
8 | /// </summary>
|
---|
9 | [Serializable]
|
---|
10 | public class BMXNetException : System.ApplicationException
|
---|
11 | {
|
---|
12 | public BMXNetException()
|
---|
13 | {
|
---|
14 |
|
---|
15 | }
|
---|
16 | public BMXNetException(string message) : base(message)
|
---|
17 | {
|
---|
18 |
|
---|
19 | }
|
---|
20 | public BMXNetException(string message, Exception inner) : base(message, inner)
|
---|
21 | {
|
---|
22 |
|
---|
23 | }
|
---|
24 | // deserialization constructor
|
---|
25 | public BMXNetException(SerializationInfo info,
|
---|
26 | StreamingContext context):
|
---|
27 | base(info, context)
|
---|
28 | {
|
---|
29 |
|
---|
30 | }
|
---|
31 |
|
---|
32 | }
|
---|
33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.