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

gu.dtalk.exception.DtalkException Maven / Gradle / Ivy

The newest version!
package gu.dtalk.exception;

public class DtalkException extends Exception {

	private static final long serialVersionUID = 1L;

	public DtalkException() {
	}

	public DtalkException(String message) {
		super(message);
	}

	public DtalkException(Throwable cause) {
		super(cause);
	}

	public DtalkException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy