Package ghidra.app.plugin.assembler
Class AssemblySyntaxException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- ghidra.app.plugin.assembler.AssemblyException
 - 
- ghidra.app.plugin.assembler.AssemblySyntaxException
 
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
public class AssemblySyntaxException extends AssemblyException
Thrown when all parses of an assembly instruction result in syntax errors.- See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected java.util.Set<AssemblyParseResult>errors 
- 
Constructor Summary
Constructors Constructor Description AssemblySyntaxException(java.lang.String message)AssemblySyntaxException(java.util.Set<AssemblyParseResult> errors)Construct a syntax exception with the associated syntax errors 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<AssemblyParseResult>getErrors()Get the collection of associated syntax errors 
 - 
 
- 
- 
Field Detail
- 
errors
protected java.util.Set<AssemblyParseResult> errors
 
 - 
 
- 
Constructor Detail
- 
AssemblySyntaxException
public AssemblySyntaxException(java.lang.String message)
 
- 
AssemblySyntaxException
public AssemblySyntaxException(java.util.Set<AssemblyParseResult> errors)
Construct a syntax exception with the associated syntax errors- Parameters:
 errors- the associated syntax errors
 
 - 
 
- 
Method Detail
- 
getErrors
public java.util.Collection<AssemblyParseResult> getErrors()
Get the collection of associated syntax errors- Returns:
 - the collection
 
 
 - 
 
 -