toggle menu
piper-kt
9.3.0
jvm
switch theme
search in API
multimedia-service
/
piperkt.services.multimedia.domain.session
/
SessionErrors
Session
Errors
sealed
class
SessionErrors
:
Exception
Inheritors
SessionNotFound
UserNotAllowed
UserNotParticipant
UserAlreadyAllowed
UserAlreadyParticipant
Members
Types
Session
Not
Found
Link copied to clipboard
data
class
SessionNotFound
(
val
sessionId
:
SessionId
)
:
SessionErrors
User
Already
Allowed
Link copied to clipboard
data
class
UserAlreadyAllowed
(
val
sessionId
:
SessionId
,
val
username
:
Username
)
:
SessionErrors
User
Already
Participant
Link copied to clipboard
data
class
UserAlreadyParticipant
(
val
sessionId
:
SessionId
,
val
username
:
Username
)
:
SessionErrors
User
Not
Allowed
Link copied to clipboard
data
class
UserNotAllowed
(
val
sessionId
:
SessionId
,
val
username
:
Username
)
:
SessionErrors
User
Not
Participant
Link copied to clipboard
data
class
UserNotParticipant
(
val
sessionId
:
SessionId
,
val
username
:
Username
)
:
SessionErrors
Properties
cause
Link copied to clipboard
open
val
cause
:
Throwable
?
message
Link copied to clipboard
open
val
message
:
String
?
Functions
add
Suppressed
Link copied to clipboard
fun
addSuppressed
(
p0
:
Throwable
)
fill
In
Stack
Trace
Link copied to clipboard
open
fun
fillInStackTrace
(
)
:
Throwable
get
Localized
Message
Link copied to clipboard
open
fun
getLocalizedMessage
(
)
:
String
get
Stack
Trace
Link copied to clipboard
open
fun
getStackTrace
(
)
:
Array
<
StackTraceElement
>
get
Suppressed
Link copied to clipboard
fun
getSuppressed
(
)
:
Array
<
Throwable
>
init
Cause
Link copied to clipboard
open
fun
initCause
(
p0
:
Throwable
)
:
Throwable
print
Stack
Trace
Link copied to clipboard
open
fun
printStackTrace
(
)
open
fun
printStackTrace
(
p0
:
PrintStream
)
open
fun
printStackTrace
(
p0
:
PrintWriter
)
set
Stack
Trace
Link copied to clipboard
open
fun
setStackTrace
(
p0
:
Array
<
StackTraceElement
>
)