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

org.pure4j.exception.IncorrectPure4JImmutableCallException 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;

import org.pure4j.processor.PureChecklistHandler.PureMethod;

public class IncorrectPure4JImmutableCallException extends Pure4JException {

	public IncorrectPure4JImmutableCallException(PureMethod pureMethod) {
		super("Pure interface has call to Pure4J.immutable, but it must be the first call in the method and only passed method parameters\n"+pureMethod);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy