All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.syntaxphoenix.syntaxapi.exception.NotImplementedException Maven / Gradle / Ivy

There is a newer version: 2.0.12
Show newest version
package com.syntaxphoenix.syntaxapi.exception;

public class NotImplementedException extends RuntimeException {

	/**
	 * Constructs an NotImplementedException with no detail message.
	 */
	public NotImplementedException() {
		super();
	}

	/**
	 * Constructs an NotImplementedException with the specified detail
	 * message.
	 *
	 * @param s the detail message.
	 */
	public NotImplementedException(String s) {
		super(s);
	}

	/**
	 * Constructs a new exception with the specified detail message and cause.
	 *
	 * 

* Note that the detail message associated with cause is not * automatically incorporated in this exception's detail message. * * @param message the detail message (which is saved for later retrieval by the * {@link Throwable#getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value * is permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public NotImplementedException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new exception with the specified cause and a detail message of * (cause==null ? null : cause.toString()) (which typically contains * the class and detail message of cause). This constructor is useful * for exceptions that are little more than wrappers for other throwables (for * example, {@link java.security.PrivilegedActionException}). * * @param cause the cause (which is saved for later retrieval by the * {@link Throwable#getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.5 */ public NotImplementedException(Throwable cause) { super(cause); } /** * */ private static final long serialVersionUID = 6664615458135158429L; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy