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

org.stone.tools.exception.PropertyException Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright(C) Chris2018998,All rights reserved.
 *
 * Project owner contact:[email protected].
 *
 * Project Licensed under Apache License v2.0.
 */
package org.stone.tools.exception;

/**
 * Bean property exception
 *
 * @author Chris Liao
 */
public class PropertyException extends BeanException {

    public PropertyException(String s) {
        super(s);
    }

    public PropertyException(Throwable cause) {
        super(cause);
    }

    public PropertyException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy