diff --git a/src/fr/devinsy/util/xml/XMLBadFormatException.java b/src/fr/devinsy/util/xml/XMLBadFormatException.java index 9624a49..268c1f0 100644 --- a/src/fr/devinsy/util/xml/XMLBadFormatException.java +++ b/src/fr/devinsy/util/xml/XMLBadFormatException.java @@ -18,6 +18,8 @@ */ package fr.devinsy.util.xml; +import org.slf4j.helpers.MessageFormatter; + /** * * @author Christian Pierre MOMON (christian.momon@devinsy.fr) @@ -47,4 +49,33 @@ public class XMLBadFormatException extends 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); + } }