cz.datalite.service.ares.exception.AresException Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2009 (c) DataLite, spol. s r.o. All rights reserved.
* Web: http://www.datalite.cz Mail: [email protected]
*/
package cz.datalite.service.ares.exception;
/**
* Chyba při komunikaci s aresem.
*
* @author Jiri Bubnik
*/
public class AresException extends Exception {
/**
* Vytvoří novou ARES exception s popisem a zdrojem chyby.
*
* @param message zpráva pro zobrazení uživateli.
* @param cause zdroj chyby.
*/
public AresException(String message, Throwable cause)
{
super(message, cause);
}
/**
* Vytvoří novou ARES exception s popisem .
*
* @param message zpráva pro zobrazení uživateli.
*/
public AresException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy