SBMLProblem-class {rsbml} | R Documentation |
Represents an exception thrown during SBML parsing.
There are trivial subclasses for fatal errors (SBMLFatal
),
recoverable errors (SBMLError
), warnings (SBMLWarning
)
and informational messages (SBMLInfo
). Errors become R
error
condition
s, warnings become R
warning
conditions and messages are output via
message
.
line
:"numeric"
line number in the SBML
file where the problem was detected. column
:"numeric"
column number
in the SBML file where the problem was detected. msg
:"character"
, a
human-readable description of the problem. signature(object = "SBMLProblem")
:
constructs a condition
object representing the exception. Michael Lawrence
SBMLProblems
, a container for instances of this class.