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

org.pure4j.exception.ClassHasConflictingAnnotationsException Maven / Gradle / Ivy

Go to download

Parses Byte-code to check the purity semantics defined using pure4j-core annotations

The newest version!
package org.pure4j.exception;

public class ClassHasConflictingAnnotationsException extends Pure4JException {

	public ClassHasConflictingAnnotationsException(Class c) {
		super("Class "+c.getName()+" marked with both @ImmutableValue and @MutableUnshared annotations in it's hierarchy.");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy