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

ru.dmerkushov.smbhelper.SMBHelperException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy