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

com.alogient.cameleon.sdk.common.util.exception.SaveObjectException Maven / Gradle / Ivy

package com.alogient.cameleon.sdk.common.util.exception;

/**
 * Used to throw an exception when a object could not by saved in the database.
 */
public class SaveObjectException extends Exception {

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

    public SaveObjectException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public SaveObjectException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy