com.ch.exception.PropertyNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ch-model Show documentation
Show all versions of ch-model Show documentation
Defines model classes used for report data.
package com.ch.exception;
public class PropertyNotFoundException extends Exception {
/**
*
*/
private static final long serialVersionUID = 2200877872113627471L;
public PropertyNotFoundException(String message) {
super(message);
}
public PropertyNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy