Example usage for java.lang Exception subclass-usage

List of usage examples for java.lang Exception subclass-usage

Introduction

In this page you can find the example usage for java.lang Exception subclass-usage.

Usage

From source file de.pdark.dsmp.DownloadFailed.java

/**
 * This exception extracts information from a failed GET request and
 * presents it in a user-friendly way.
 * 
 * @author digulla
 *

From source file MainClass.java

class AlreadyCapitalizedException extends Exception {
    public String toString() {
        return "Input has already been capitalized";
    }
}

From source file org.b3log.latke.servlet.advice.RequestProcessAdviceException.java

/**
 * Exception for {@link RequestProcessAdvice}.
 * 
 * @author <a href="mailto:wmainlove@gmail.com">Love Yao</a>
 * @version 1.0.0.0, Oct 14, 2012
 */

From source file com.dickthedeployer.dick.web.exception.RepositoryUnavailableException.java

@ResponseStatus(HttpStatus.NOT_ACCEPTABLE)
public class RepositoryUnavailableException extends Exception {
}

From source file com.sciamlab.ckan4j.exception.CKANException.java

/**
 * 
 * @author SciamLab
 *
 */

From source file net.sf.jabb.util.ex.LoggedException.java

/**
 * The exception that had been logged by commons-logging.
 * @author James Hu
 *
 */
public class LoggedException extends Exception {

From source file com.dickthedeployer.dick.web.exception.NameTakenException.java

/**
 *
 * @author mariusz
 */
@ResponseStatus(HttpStatus.PRECONDITION_FAILED)
public class NameTakenException extends Exception {

From source file com.dickthedeployer.dick.web.exception.NotFoundException.java

/**
 *
 * @author mariusz
 */
@ResponseStatus(HttpStatus.NOT_FOUND)
public class NotFoundException extends Exception {

From source file org.onebusaway.admin.service.exceptions.DateValidationException.java

/**
 * Thrown when date validation fails
 * @author abelsare
 *
 */
public class DateValidationException extends Exception {

From source file org.jboss.dashboard.ui.taglib.formatter.FormatterException.java

/**
 * Wrapper for exceptions thrown inside a formatter execution.
 */
public class FormatterException extends Exception {
    private static transient org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory
            .getLog(FormatterException.class.getName());