1 /***
2 * @(#) MirkETransactionException.java
3 *
4 * Created by:abuayyub on 29 January, 2005.
5
6 Copyright (c) 2004 Arizona State University - Cancer Research Institute. All rights reserved.
7
8 MirkE is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 MirkE is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with MirkE; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US
21
22 */
23
24 package edu.asu.cri.MirkE.exceptions;
25
26 /***
27 * @author abuayyub
28 *
29 * TODO To change the template for this generated type comment go to
30 * Window - Preferences - Java - Code Style - Code Templates
31 */
32 public class MirkETransactionException
33 extends MirkEApplicationException
34 {
35
36
37 /***
38 * Constructor with a message of the exception
39 *
40 * @param msg Message to further explain the exception
41 **/
42 public MirkETransactionException ( String msg )
43 {
44 super( msg );
45 }
46
47 /***
48 * Constructor with a message of the exception
49 *
50 * @param object root cause of exception
51 * @param message Message to further explain the exception
52 **/
53 public MirkETransactionException ( Throwable object, String message )
54 {
55 super( message, object);
56 }
57
58 /***
59 * Constructor with a message of the exception
60 *
61 * @param object root cause of exception
62 **/
63 public MirkETransactionException ( Throwable object )
64 {
65 super(object);
66 }
67
68
69
70
71
72 }