List of usage examples for java.lang RuntimeException subclass-usage
From source file io.kamax.mxisd.exception.NotImplementedException.java
@ResponseStatus(value = HttpStatus.NOT_IMPLEMENTED) public class NotImplementedException extends RuntimeException { public NotImplementedException(String s) { super(s); }
From source file io.kamax.mxisd.exception.ObjectNotFoundException.java
@ResponseStatus(value = HttpStatus.NOT_FOUND) public class ObjectNotFoundException extends RuntimeException { public ObjectNotFoundException(String type, String id) { super(type + " with ID " + id + " does not exist"); }
From source file ru.mystamps.web.controller.NotFoundException.java
@ResponseStatus(HttpStatus.NOT_FOUND) public class NotFoundException extends RuntimeException { }
From source file br.octa.exception.LoggedRuntimeException.java
/** * Acts as a decorator and do log in addition to the existing behaviour of the exception */ public class LoggedRuntimeException extends RuntimeException { /**
From source file org.apache.ambari.view.registry.internal.exception.ConfigSerializationException.java
/** * */ public class ConfigSerializationException extends RuntimeException { public ConfigSerializationException(JsonProcessingException e) { super(e);
From source file org.frat.common.validation.ValidateException.java
/**
* Class Name: ValidateException.
* <p>
* Description: the validate exception, <br>
* the exception will wrap the <code>Erros</code> list which thrown from service or any facade
*
From source file org.bonitasoft.web.designer.repository.exception.ConstraintValidationException.java
public class ConstraintValidationException extends RuntimeException { public ConstraintValidationException(Set<ConstraintViolation<Object>> violations) { super(buildMessage(violations)); }
From source file org.wso2.securevault.SecureVaultException.java
/** * Common exception for all within secure vault module - TODO create fine grain exceptions */ public class SecureVaultException extends RuntimeException { private static final long serialVersionUID = -7361599095528938812L;
From source file org.apache.synapse.task.SynapseTaskException.java
/** * */ public class SynapseTaskException extends RuntimeException { private static final long serialVersionUID = -7967803433723984038L;
From source file com.ushahidi.chambua.web.exception.BadRequestException.java
/**
* When thrown, this exception results in 400 HTTP status
* being sent to the client
*
* @author ekala
*