com.evasion.exception.PersistenceViolationException Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.exception;
/**
*
* @author sebastien.glon
*/
public class PersistenceViolationException extends EvasionException {
/**
* Creates a new instance of PersistenceViolationException
without detail message.
*/
public PersistenceViolationException() {
}
/**
* Constructs an instance of PersistenceViolationException
with the specified detail message.
* @param msg the detail message.
*/
public PersistenceViolationException(String msg) {
super(msg);
}
/**
* Constructs an instance of PersistenceViolationException
with the specified detail message.
* @param msg the detail message.
*/
public PersistenceViolationException(String msg, Throwable t) {
super(msg, t);
}
}