View Javadoc
1 /*
2 * SystemException.java
3 * Created on September 4, 2003
4 *
5 * The Blues Framework - A lightweight application framework
6 * Copyright (C) 2003 Lonnie Pryor
7 * http://blues.lonniepryor.com
8 *
9 * This library is free software; you can redistribute it and/or modify it under the
10 * terms of the GNU Lesser General Public License as published by the Free Software
11 * Foundation; either version 2.1 of the License, or (at your option) any later
12 * version.
13 *
14 * This library is distributed in the hope that it will be useful, but WITHOUT ANY
15 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
16 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License along
19 * with this library; if not, write to:
20 *
21 * The Free Software Foundation, Inc.
22 * 59 Temple Place, Suite 330
23 * Boston, MA 02111-1307 USA
24 *
25 */
26 package com.lonniepryor.blues.sys;
27
28 import com.lonniepryor.blues.util.BluesException;
29
30 /***
31 * Exception thrown by the system assembeler if it encounters a problem assembling.
32 *
33 * @author Lonnie Pryor
34 * @version $Revision: 1.1 $
35 */
36 public class SystemException extends BluesException {
37 /***
38 * Creates a new SystemException object.
39 */
40 public SystemException () {
41 }
42
43 /***
44 * Creates a new SystemException object.
45 *
46 * @param message The error message.
47 */
48 public SystemException (String message) {
49 super(message);
50 }
51
52 /***
53 * Creates a new SystemException object.
54 *
55 * @param message The error message.
56 * @param cause The cause of this exception.
57 */
58 public SystemException (String message, Throwable cause) {
59 super(message, cause);
60 }
61
62 /***
63 * Creates a new SystemException object.
64 *
65 * @param cause The cause of this exception.
66 */
67 public SystemException (Throwable cause) {
68 super(cause);
69 }
70 }
This page was automatically generated by Maven