
com.oneandone.ejbcdiunit.resourcesimulators.NotImplementedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ejb-cdi-unit Show documentation
Show all versions of ejb-cdi-unit Show documentation
A module that can be used together with cdiunit to build en ejb-test-environment.
The newest version!
package com.oneandone.ejbcdiunit.resourcesimulators;
/**
* @author aschoerk
*/
public class NotImplementedException extends RuntimeException {
private static final long serialVersionUID = -3958406648738999778L;
/**
* Constructs a new runtime exception with the specified detail message.
* The cause is not initialized, and may subsequently be initialized by a
* call to {@link #initCause}.
*
* @param message the detail message. The detail message is saved for
* later retrieval by the {@link #getMessage()} method.
*/
public NotImplementedException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy