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

com.alon.spring.crud.service.DeleteException Maven / Gradle / Ivy

Go to download

Projeto base para criação de serviços e recusos de CRUD com Spring Data JPA.

There is a newer version: 3.0.0
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.alon.spring.crud.service;

/**
 *
 * @author paulo
 */
public class DeleteException extends Exception {

    public DeleteException() {
    }
    
    public DeleteException(String msg) {
        super(msg);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy