mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 13:20:47 +00:00
19 lines
407 B
PowerShell
19 lines
407 B
PowerShell
class VMRemoteError : Exception {
|
|
VMRemoteError ([string]$msg) : base ($msg) {
|
|
}
|
|
}
|
|
|
|
class LoginError : VMRemoteError {
|
|
LoginError ([string]$msg) : base ($msg) {
|
|
}
|
|
}
|
|
|
|
class CAPIError : VMRemoteError {
|
|
[int]$code
|
|
[string]$function
|
|
|
|
CAPIError ([int]$code, [string]$function) : base ("$function returned $code") {
|
|
$this.code = $code
|
|
$this.function = $function
|
|
}
|
|
} |