|
|||||||||||||||||||
| 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 | |||||||||||||||
| GuiRuntimeException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* brownies and its relative products are published under the terms
|
|
| 3 |
* of the Apache Software License.
|
|
| 4 |
*
|
|
| 5 |
* Created on 2004/06/09 2:23:05
|
|
| 6 |
*/
|
|
| 7 |
package org.asyrinx.brownie.swing;
|
|
| 8 |
|
|
| 9 |
import net.sf.hibernate.exception.NestableRuntimeException;
|
|
| 10 |
|
|
| 11 |
/**
|
|
| 12 |
* @author akima
|
|
| 13 |
*/
|
|
| 14 |
public class GuiRuntimeException extends NestableRuntimeException { |
|
| 15 |
|
|
| 16 |
/**
|
|
| 17 |
*
|
|
| 18 |
*/
|
|
| 19 | 0 |
public GuiRuntimeException() {
|
| 20 | 0 |
super();
|
| 21 |
} |
|
| 22 |
|
|
| 23 |
/**
|
|
| 24 |
* @param arg0
|
|
| 25 |
*/
|
|
| 26 | 0 |
public GuiRuntimeException(String arg0) {
|
| 27 | 0 |
super(arg0);
|
| 28 |
} |
|
| 29 |
|
|
| 30 |
/**
|
|
| 31 |
* @param arg0
|
|
| 32 |
*/
|
|
| 33 | 0 |
public GuiRuntimeException(Throwable arg0) {
|
| 34 | 0 |
super(arg0);
|
| 35 |
} |
|
| 36 |
|
|
| 37 |
/**
|
|
| 38 |
* @param arg0
|
|
| 39 |
* @param arg1
|
|
| 40 |
*/
|
|
| 41 | 0 |
public GuiRuntimeException(String arg0, Throwable arg1) {
|
| 42 | 0 |
super(arg0, arg1);
|
| 43 |
} |
|
| 44 |
|
|
| 45 |
} |
|
||||||||||