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 SummaryFields Modifier and Type Field Description protected java.util.Set<AssemblyParseResult>errors
 - 
Constructor SummaryConstructors Constructor Description AssemblySyntaxException(java.lang.String message)AssemblySyntaxException(java.util.Set<AssemblyParseResult> errors)Construct a syntax exception with the associated syntax errors
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<AssemblyParseResult>getErrors()Get the collection of associated syntax errors
 
- 
- 
- 
Field Detail- 
errorsprotected java.util.Set<AssemblyParseResult> errors 
 
- 
 - 
Constructor Detail- 
AssemblySyntaxExceptionpublic AssemblySyntaxException(java.lang.String message) 
 - 
AssemblySyntaxExceptionpublic AssemblySyntaxException(java.util.Set<AssemblyParseResult> errors) Construct a syntax exception with the associated syntax errors- Parameters:
- errors- the associated syntax errors
 
 
- 
 - 
Method Detail- 
getErrorspublic java.util.Collection<AssemblyParseResult> getErrors() Get the collection of associated syntax errors- Returns:
- the collection
 
 
- 
 
-