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

net.amygdalum.testrecorder.runtime.GenericObjectException Maven / Gradle / Ivy

The newest version!
package net.amygdalum.testrecorder.runtime;

public class GenericObjectException extends RuntimeException {

    public GenericObjectException() {
    }

    public GenericObjectException(String msg, Throwable[] suppressed) {
        super(msg);
        for (Throwable exception : suppressed) {
            addSuppressed(exception);
        }
    }

	public GenericObjectException(String msg, Throwable cause) {
		super(msg, cause);
	}

	public GenericObjectException(String msg) {
		super(msg);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy