org.pure4j.immutable.ClassNotImmutableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pure4j-core Show documentation
Show all versions of pure4j-core Show documentation
Pure Functional Programming Semantics For Java
package org.pure4j.immutable;
import org.pure4j.Pure4J;
/**
* Thrown at runtime by {@link Pure4J} if a library is passed a non-immutable implementation.
*
* @author robmoffat
*
*/
public class ClassNotImmutableException extends RuntimeException {
public ClassNotImmutableException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy