toggle menu
sarif
jvm
switch theme
search in API
sarif
/
com.jetbrains.qodana.sarif.model
/
Exception
Exception
open
class
Exception
:
PropertyOwner
Describes a runtime exception encountered during the execution of an analysis tool.
Members
Constructors
Exception
Link copied to clipboard
constructor
(
)
Properties
inner
Exceptions
Link copied to clipboard
@
SerializedName
(
value
=
"innerExceptions"
)
@
Expose
open
var
innerExceptions
:
List
<
Exception
>
An array of exception objects each of which is considered a cause of this exception.
kind
Link copied to clipboard
@
SerializedName
(
value
=
"kind"
)
@
Expose
open
var
kind
:
String
A string that identifies the kind of exception, for example, the fully qualified type name of an object that was thrown, or the symbolic name of a signal.
message
Link copied to clipboard
@
SerializedName
(
value
=
"message"
)
@
Expose
open
var
message
:
String
A message that describes the exception.
properties
Link copied to clipboard
@
SerializedName
(
value
=
"properties"
)
@
Expose
open
var
properties
:
PropertyBag
Key/value pairs that provide additional information about the object.
stack
Link copied to clipboard
@
SerializedName
(
value
=
"stack"
)
@
Expose
open
var
stack
:
Stack
A call stack that is relevant to a result.
Functions
equals
Link copied to clipboard
open
fun
equals
(
other
:
Any
)
:
Boolean
get
Properties
Link copied to clipboard
abstract
fun
getProperties
(
)
:
PropertyBag
hash
Code
Link copied to clipboard
open
fun
hashCode
(
)
:
Int
set
Properties
Link copied to clipboard
abstract
fun
setProperties
(
<set-?>
:
PropertyBag
)
to
String
Link copied to clipboard
open
fun
toString
(
)
:
String
update
Properties
Link copied to clipboard
open
fun
updateProperties
(
mutator
:
(
in
PropertyBag
)
->
Unit
)
with
Inner
Exceptions
Link copied to clipboard
open
fun
withInnerExceptions
(
innerExceptions
:
List
<
Exception
>
)
:
Exception
with
Kind
Link copied to clipboard
open
fun
withKind
(
kind
:
String
)
:
Exception
with
Message
Link copied to clipboard
open
fun
withMessage
(
message
:
String
)
:
Exception
with
Properties
Link copied to clipboard
open
fun
withProperties
(
properties
:
PropertyBag
)
:
Exception
with
Stack
Link copied to clipboard
open
fun
withStack
(
stack
:
Stack
)
:
Exception