List of usage examples for java.lang RuntimeException subclass-usage
From source file com.stimulus.archiva.exception.ChainedRuntimeException.java
public class ChainedRuntimeException extends RuntimeException implements Serializable { private static final long serialVersionUID = -8279414563840852024L; private Throwable cause = null; protected static Log logger = LogFactory.getLog(ChainedRuntimeException.class.getName());
From source file de.kaiserpfalzEdv.commons.exceptions.BaseBusinessException.java
/**
* The default exception class for the KP Commons library.
*
* @author klenkes
* @version 1.0.0
* @since 11.10.2008 16:26:58
From source file org.jactr.io.antlr3.misc.CommonTreeException.java
public class CommonTreeException extends RuntimeException { /** * logger definition */ static public final Log LOGGER = LogFactory.getLog(CommonTreeException.class);
From source file de.hska.ld.core.exception.ApplicationException.java
public class ApplicationException extends RuntimeException { protected ApplicationError applicationError; protected HttpStatus httpStatus; public ApplicationException() {
From source file org.openremote.beehive.configuration.exception.NotFoundException.java
@ResponseStatus(HttpStatus.NOT_FOUND) public class NotFoundException extends RuntimeException { public NotFoundException() { } public NotFoundException(String message) {
From source file org.openwms.tms.routing.NoRouteException.java
/**
* A NoRouteException.
*
* @author <a href="mailto:scherrer@openwms.org">Heiko Scherrer</a>
*/
@ResponseStatus(HttpStatus.NOT_FOUND)
From source file org.apache.tajo.parser.sql.SQLParseError.java
/** * Exception that represents a kind of SQL syntax error caused by the parser layer */ public class SQLParseError extends RuntimeException { private String header; private String errorLine;
From source file org.openwms.core.http.HttpBusinessException.java
/**
* A HttpBusinessException encapsulates well-known BusinessExceptions into exceptions particular to http translation.
*
* @author <a href="mailto:scherrer@openwms.org">Heiko Scherrer</a>
* @version $Revision: $
* @since 0.1
From source file kr.ac.korea.dbserver.parser.SQLParseError.java
public class SQLParseError extends RuntimeException { private String header; private String errorLine; private int charPositionInLine; private int line; private Token offendingToken;
From source file org.apache.tajo.engine.parser.SQLParseError.java
public class SQLParseError extends RuntimeException { private String header; private String errorLine; private int charPositionInLine; private int line; private Token offendingToken;