ru.dmerkushov.oshelper.OSHelperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of os-helper Show documentation
Show all versions of os-helper Show documentation
A library to slightly ease the use of OS standard functionality
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);
}
}