
org.pitest.quickbuilder.NoValueAvailableError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickbuilder Show documentation
Show all versions of quickbuilder Show documentation
Generates implementations of the Builder Pattern at runtime.
package org.pitest.quickbuilder;
/**
* Thrown when a value is requested but none is available.
*
*/
public final class NoValueAvailableError extends QuickBuilderError {
private static final long serialVersionUID = 1L;
public NoValueAvailableError(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy