CheckStylePluginException.java :  » IntelliJ » checkstyle-idea » org » infernus » idea » checkstyle » exception » Java Open Source

Java Open Source » IntelliJ » checkstyle idea 
checkstyle idea » org » infernus » idea » checkstyle » exception » CheckStylePluginException.java
package org.infernus.idea.checkstyle.exception;

/**
 * Exception thrown on a plug-in error.
 *
 * @author James Shiell
 * @version 1.0
 */
public class CheckStylePluginException extends RuntimeException {

    /**
     * Create a new exception with no cause.
     *
     * @param message the error message.
     */
    public CheckStylePluginException(final String message) {
        super(message);
    }

    /**
     * Create a new exception with the given cause.
     *
     * @param message the error message.
     * @param cause the cause.
     */
    public CheckStylePluginException(final String message, final Throwable cause) {
        super(message, cause);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.