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

ru.dmerkushov.oshelper.OSHelperException Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package ru.dmerkushov.oshelper;

/**
 *
 * @author Dmitriy Merkushov
 */
public class OSHelperException extends Exception {

	/**
	 * Creates a new instance of OSHelperException without detail message.
	 */
	public OSHelperException () {
	}

	/**
	 * Constructs an instance of OSHelperException with the specified detail message.
	 * @param msg the detail message.
	 */
	public OSHelperException (String msg) {
		super (msg);
	}

	/**
	 * Constructs an instance of OSHelperException with the specified cause.
	 * @param cause the cause (which is saved for later retrieval by the Exception.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
	 */
	public OSHelperException (Throwable cause) {
		super (cause);
	}

	/**
	 * Constructs an instance of OSHelperException with the specified detail message and cause.
	 * @param msg the detail message.
	 * @param cause the cause (which is saved for later retrieval by the Exception.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
	 */
	public OSHelperException (String msg, Throwable cause) {
		super (msg, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy