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

org.demoiselle.jee.persistence.crud.exception.DemoisellePersistenceCrudException Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
/*
 * Demoiselle Framework
 *
 * License: GNU Lesser General Public License (LGPL), version 3 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.demoiselle.jee.persistence.crud.exception;

import org.demoiselle.jee.core.exception.DemoiselleException;

/**
 *
 * Exception for all persistence errors in Framework.
 *
 */
public class DemoisellePersistenceCrudException extends DemoiselleException {

    private static final long serialVersionUID = 1L;

    public DemoisellePersistenceCrudException() {
    }

    public DemoisellePersistenceCrudException(String message) {
        super(message);
    }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy