Normalize Exception methods.
This commit is contained in:
parent
2876cb65b9
commit
221f6b7792
1 changed files with 31 additions and 0 deletions
|
@ -18,6 +18,8 @@
|
||||||
*/
|
*/
|
||||||
package fr.devinsy.util.xml;
|
package fr.devinsy.util.xml;
|
||||||
|
|
||||||
|
import org.slf4j.helpers.MessageFormatter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
|
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
|
||||||
|
@ -47,4 +49,33 @@ public class XMLBadFormatException extends Exception
|
||||||
{
|
{
|
||||||
super(message, exception);
|
super(message, exception);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param format
|
||||||
|
* @param arguments
|
||||||
|
*/
|
||||||
|
public XMLBadFormatException(final String format, final Object... arguments)
|
||||||
|
{
|
||||||
|
this(MessageFormatter.arrayFormat(format, arguments).getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param message
|
||||||
|
* @param cause
|
||||||
|
*/
|
||||||
|
public XMLBadFormatException(final String message, final Throwable cause)
|
||||||
|
{
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param cause
|
||||||
|
*/
|
||||||
|
public XMLBadFormatException(final Throwable cause)
|
||||||
|
{
|
||||||
|
super(cause);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue