List of usage examples for java.lang RuntimeException subclass-usage
From source file com.devcraftsman.blog.post.impl.PostNotFoundException.java
/**
* Created by devcraftsman on 3/29/16.
* ----------------------------------------------------
* This software is licensed under the Apache 2 license
* see: [http://www.apache.org/licenses/LICENSE-2.0]
**/
From source file es.upm.oeg.tools.quality.ldsniffer.BadRequestException.java
/**
* Copyright 2014-2016 Ontology Engineering Group, Universidad Politcnica de Madrid, Spain
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
From source file es.upm.oeg.tools.quality.ldsniffer.ServerError.java
/**
* Copyright 2014-2016 Ontology Engineering Group, Universidad Politcnica de Madrid, Spain
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
From source file org.beangle.security.BeangleSecurityException.java
public class BeangleSecurityException extends RuntimeException { private static final long serialVersionUID = 1521217606839712065L; public BeangleSecurityException() { super();
From source file com.boundlessgeo.geoserver.api.exceptions.NotFoundException.java
/** * Not Found (404) exception. */ @ResponseStatus(value = HttpStatus.NOT_FOUND) public class NotFoundException extends RuntimeException {
From source file com.boundlessgeo.geoserver.api.exceptions.BadRequestException.java
/** * Bad Request (400) error. */ @ResponseStatus(value = HttpStatus.BAD_REQUEST) public class BadRequestException extends RuntimeException {
From source file com.boundlessgeo.geoserver.api.exceptions.IncompleteRequestException.java
/** * Payment Required (402) error used to indicate an incomplete request. */ @ResponseStatus(value = HttpStatus.PAYMENT_REQUIRED) public class IncompleteRequestException extends RuntimeException {
From source file name.martingeisse.api.handler.ApiNotImplementedException.java
/**
* This exception can be thrown to indicate that an API function has not
* been implemented yet. The main difference to a {@link NotImplementedException}
* is that this one is "public" information about the API, and the fact that
* the function is not implemented yet may be reported to the client.
*/
From source file net.groupbuy.ResourceNotFoundException.java
/**
* ??
*
* @author SHOP++ Team
* @version 3.0
*/
From source file exceptions.PostNotFoundException.java
/** * * @author sergio */ @ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "Post not found") public class PostNotFoundException extends RuntimeException {