1 package net.sf.crispy.properties; 2 3 /** 4 * Exception by loading the property file. 5 * 6 * @author Linke 7 * 8 */ 9 public class PropertiesLoadException extends RuntimeException { 10 11 private static final long serialVersionUID = 1313877982424L; 12 13 public PropertiesLoadException(String pvMsg, Throwable pvThrowable) { 14 super(pvMsg, pvThrowable); 15 } 16 17 }