pubnub-kotlin-docs
Toggle table of contents
13.1.0
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
pubnub-kotlin-docs
pubnub-kotlin-core-api
/
com.pubnub.api.logging
/
LogMessageContent
/
Error
Error
jvm
data
class
Error
(
val
type
:
String
?
=
null
,
val
message
:
String
,
val
stack
:
List
<
String
>
?
=
null
)
:
LogMessageContent
Error message with type, message, and stack trace.
Members
Constructors
Error
Link copied to clipboard
jvm
constructor
(
type
:
String
?
=
null
,
message
:
String
,
stack
:
List
<
String
>
?
=
null
)
Properties
message
Link copied to clipboard
jvm
@
SerializedName
(
value
=
"message"
)
val
message
:
String
stack
Link copied to clipboard
jvm
@
SerializedName
(
value
=
"stack"
)
val
stack
:
List
<
String
>
?
type
Link copied to clipboard
jvm
@
SerializedName
(
value
=
"type"
)
val
type
:
String
?