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

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

package com.github.jasonmfehr.tojs.exception;

public class FileWriteException extends AbstractParameterizedException {

	private static final long serialVersionUID = -9060515377747871619L;
	private static final String MESSAGE = "Exception happened while writing file at " + AbstractParameterizedException.PARAMETER_PLACEHOLDER;
	
	public FileWriteException(final String location, final Throwable cause) {
		super(location, cause);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy