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

com.github.jasonmfehr.tojs.exception.ObjectInstantiationException Maven / Gradle / Ivy

package com.github.jasonmfehr.tojs.exception;

public class ObjectInstantiationException extends AbstractParameterizedException {
	
	private static final long serialVersionUID = -874919662148412952L;
	private static final String MESSAGE = "Could not instantiate object with class " + AbstractParameterizedException.PARAMETER_PLACEHOLDER;
	
	public ObjectInstantiationException(final String className, final Exception cause) {
		super(className, cause);
	}

	@Override
	protected String getExceptionMessage() {
		return MESSAGE;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy