Class PomParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.owasp.dependencycheck.xml.pom.PomParseException
-
- All Implemented Interfaces:
java.io.Serializable
@ThreadSafe public class PomParseException extends java.io.IOException
An exception used when parsing a suppression rule file fails.- Author:
- Jeremy Long
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PomParseException()
Creates a new SuppressionParseException.PomParseException(java.lang.String msg)
Creates a new SuppressionParseException.PomParseException(java.lang.String msg, java.lang.Throwable ex)
Creates a new SuppressionParseException.PomParseException(java.lang.Throwable ex)
Creates a new SuppressionParseException.
-
-
-
Constructor Detail
-
PomParseException
public PomParseException()
Creates a new SuppressionParseException.
-
PomParseException
public PomParseException(java.lang.String msg)
Creates a new SuppressionParseException.- Parameters:
msg
- a message for the exception.
-
PomParseException
public PomParseException(java.lang.Throwable ex)
Creates a new SuppressionParseException.- Parameters:
ex
- the cause of the parse exception
-
PomParseException
public PomParseException(java.lang.String msg, java.lang.Throwable ex)
Creates a new SuppressionParseException.- Parameters:
msg
- a message for the exception.ex
- the cause of the parse exception
-
-