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

com.github.skjolber.packing.packer.PackagerException Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.github.skjolber.packing.packer;

public class PackagerException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	public PackagerException() {
		super();
	}

	public PackagerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy