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

org.pure4j.exception.FieldNotFinalException 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 java.lang.reflect.Field;

public class FieldNotFinalException extends Pure4JException {

	public FieldNotFinalException(Field f) {
		super("Field "+f+" not declared final, but is immutable");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy