|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
UnsupportedClassRuntimeException.java | - | 0% | 0% | 0% |
|
1 |
/*
|
|
2 |
* Joey and its relative products are published under the terms
|
|
3 |
* of the Apache Software License.
|
|
4 |
*/
|
|
5 |
/*
|
|
6 |
* Created on 2004/03/01
|
|
7 |
*/
|
|
8 |
package org.asyrinx.brownie.core.lang;
|
|
9 |
|
|
10 |
/**
|
|
11 |
* @author akima
|
|
12 |
*/
|
|
13 |
public class UnsupportedClassRuntimeException extends RuntimeException { |
|
14 |
|
|
15 |
/**
|
|
16 |
*
|
|
17 |
*/
|
|
18 | 0 |
public UnsupportedClassRuntimeException() {
|
19 | 0 |
super();
|
20 |
} |
|
21 |
|
|
22 |
/**
|
|
23 |
* @param message
|
|
24 |
*/
|
|
25 | 0 |
public UnsupportedClassRuntimeException(String message) {
|
26 | 0 |
super(message);
|
27 |
} |
|
28 |
|
|
29 |
/**
|
|
30 |
* @param cause
|
|
31 |
*/
|
|
32 | 0 |
public UnsupportedClassRuntimeException(Throwable cause) {
|
33 | 0 |
super(cause);
|
34 |
} |
|
35 |
|
|
36 |
/**
|
|
37 |
* @param message
|
|
38 |
* @param cause
|
|
39 |
*/
|
|
40 | 0 |
public UnsupportedClassRuntimeException(String message, Throwable cause) {
|
41 | 0 |
super(message, cause);
|
42 |
} |
|
43 |
|
|
44 |
} |
|