List of usage examples for java.lang RuntimeException subclass-usage
From source file com.bazaarvoice.seo.sdk.exception.BVSdkException.java
/**
* Bazaarvoice sdk exception class.
*
* @author Anandan Narayanaswamy
*
*/
From source file io.springagora.core.exceptions.BadRequisitionException.java
@ResponseStatus(value = HttpStatus.BAD_REQUEST) public class BadRequisitionException extends RuntimeException { private static final long serialVersionUID = -6029389404914468192L; public final int ERROR_CODE = HttpStatus.BAD_REQUEST.value();
From source file io.springagora.core.exceptions.EntityNotFoundException.java
@ResponseStatus(value = HttpStatus.NOT_FOUND) public class EntityNotFoundException extends RuntimeException { private static final long serialVersionUID = -6029389404914468192L; public final int ERROR_CODE = HttpStatus.NOT_FOUND.value();
From source file net.team2xh.crt.language.compiler.CompilerException.java
/** * * @author Hamza Haiken <tenchi@team2xh.net> */ public class CompilerException extends RuntimeException {
From source file no.digipost.api.client.errorhandling.DigipostClientException.java
public class DigipostClientException extends RuntimeException { private static final long serialVersionUID = 1L; private final ErrorCode errorCode; private final ErrorType errorType; private final String errorMessage;
From source file net.javacrumbs.springws.test.WsTestException.java
/** * Exception thrown when test validation fails. * @author Lukas Krecan * */ public class WsTestException extends RuntimeException {
From source file com.spectralogic.ds3client.exceptions.AggregateException.java
public class AggregateException extends RuntimeException { private final List<Throwable> exceptions; public AggregateException(final Iterable<Throwable> exceptions) { super("One or more exceptions were aggregated together");
From source file net.dv8tion.jda.core.exceptions.ErrorResponseException.java
/** * Indicates an unhandled error that is returned by Discord API Request using {@link net.dv8tion.jda.core.requests.RestAction RestAction} * <br>It holds an {@link net.dv8tion.jda.core.requests.ErrorResponse ErrorResponse} */ public class ErrorResponseException extends RuntimeException { private final ErrorResponse errorResponse;
From source file org.jactr.core.utils.parameter.ParameterException.java
/** * @author developer * */ public class ParameterException extends RuntimeException { /**
From source file org.apache.bookkeeper.conf.UncheckedConfigurationException.java
/** * Wraps a {@link org.apache.commons.configuration.ConfigurationException} with an unchecked exception. * * @since 4.7.0 */ public class UncheckedConfigurationException extends RuntimeException {