![JAR search and dependency download from the Maven repository](/logo.png)
com.evasion.exception.PersistenceViolationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API Show documentation
Show all versions of API Show documentation
API de l'application modulaire evasion-en-ligne
/*
* 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy