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