You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package leaf.ui;
|
|
|
|
public class LeafRuntimeException extends RuntimeException
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private boolean abort = false;
|
|
|
|
public LeafRuntimeException( boolean all )
|
|
{
|
|
this.abort = all;
|
|
}
|
|
|
|
public boolean isAbort()
|
|
{
|
|
return abort;
|
|
}
|
|
}
|