com.github.uscexp.blockformatpropertyfile.exception.PropertyFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BlockFormatPropertyFile Show documentation
Show all versions of BlockFormatPropertyFile Show documentation
Property file in java style block format.
/*
* Copyright (C) 2014 by haui - all rights reserved
*/
package com.github.uscexp.blockformatpropertyfile.exception;
/**
* @author haui
*
*/
public class PropertyFileException extends Exception {
private static final long serialVersionUID = -8604138106370403044L;
public PropertyFileException(String message) {
super(message);
}
public PropertyFileException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy