java/parameter-lister/src/info/glogalcode/parameterLister/OutputModuleException.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 10 Sep 2016 23:03:43 +0200
changeset 21 7d86d90e6e0e
child 28 bfef9f34e438
permissions -rw-r--r--
Java version (some old source code)
franta-hg@21
     1
package info.glogalcode.parameterLister;
franta-hg@21
     2
franta-hg@21
     3
/**
franta-hg@21
     4
 *
franta-hg@21
     5
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@21
     6
 */
franta-hg@21
     7
public class OutputModuleException extends ParameterListerException {
franta-hg@21
     8
franta-hg@21
     9
	public OutputModuleException() {
franta-hg@21
    10
	}
franta-hg@21
    11
franta-hg@21
    12
	public OutputModuleException(String message) {
franta-hg@21
    13
		super(message);
franta-hg@21
    14
	}
franta-hg@21
    15
franta-hg@21
    16
	public OutputModuleException(Throwable cause) {
franta-hg@21
    17
		super(cause);
franta-hg@21
    18
	}
franta-hg@21
    19
franta-hg@21
    20
	public OutputModuleException(String message, Throwable cause) {
franta-hg@21
    21
		super(message, cause);
franta-hg@21
    22
	}
franta-hg@21
    23
franta-hg@21
    24
}