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

org.tbwork.anole.loader.exceptions.BadTransformValueFormatException Maven / Gradle / Ivy

The newest version!
package org.tbwork.anole.loader.exceptions;

import org.tbwork.anole.loader.types.ConfigType;

public class BadTransformValueFormatException extends RuntimeException{
 
	public BadTransformValueFormatException(){
		super("Error occurs when converting certain string value to certain type");
	}
	
	public BadTransformValueFormatException(String value, ConfigType type){
		super(String.format("Error occurs when converting '%s' value to %s", value, type));
	}
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy