1 /**
2 * JIntellitype
3 * -----------------
4 * Copyright 2005-2008 Emil A. Lefkof III, Melloware Inc.
5 *
6 * I always give it my best shot to make a program useful and solid, but
7 * remeber that there is absolutely no warranty for using this program as
8 * stated in the following terms:
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License");
11 * you may not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS,
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
21 */
22 package com.melloware.jintellitype;
23
24
25 /**
26 * Exception class for all JIntellitype Exceptions.
27 * <p>
28 * Copyright (c) 1999-2008
29 * Melloware, Inc. <http://www.melloware.com>
30 * @author Emil A. Lefkof III <info@melloware.com>
31 * @version 1.3.1
32 */
33 public class JIntellitypeException extends RuntimeException {
34
35
36 public JIntellitypeException() {
37 super();
38 }
39
40
41 public JIntellitypeException(String aMessage, Throwable aCause) {
42 super(aMessage, aCause);
43 }
44
45
46 public JIntellitypeException(String aMessage) {
47 super(aMessage);
48 }
49
50
51 public JIntellitypeException(Throwable aCause) {
52 super(aCause);
53 }
54
55 }