ru.dmerkushov.smbhelper.SMBHelperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smb-helper Show documentation
Show all versions of smb-helper Show documentation
Slightly helps to use SMB with jCIFS library
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ru.dmerkushov.smbhelper;
/**
*
* @author Dmitriy Merkushov
*/
public class SMBHelperException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Creates a new instance of SMBHelperException
without detail message.
*/
public SMBHelperException() {
}
/**
* Constructs an instance of SMBHelperException
with the specified detail message.
* @param msg the detail message.
*/
public SMBHelperException(String msg) {
super(msg);
}
/**
* Constructs an instance of SMBHelperException
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 SMBHelperException(Throwable cause) {
super(cause);
}
/**
* Constructs an instance of SMBHelperException
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 SMBHelperException(String msg, Throwable cause) {
super(msg, cause);
}
}