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

org.nakedobjects.headlessviewer.viewer.internal.RuntimeExceptionWrapper Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.headlessviewer.viewer.internal;

public class RuntimeExceptionWrapper extends RuntimeException {
    private static final long serialVersionUID = 1L;
    private final RuntimeException runtimeException;

    public RuntimeExceptionWrapper(final RuntimeException runtimeException) {
        this.runtimeException = runtimeException;
    }

    public RuntimeException getRuntimeException() {
        return runtimeException;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy