voicemeeter-api-powershell/lib/errors.ps1

19 lines
407 B
PowerShell
Raw Normal View History

2022-12-18 04:30:51 +00:00
class VMRemoteError : Exception {
VMRemoteError ([string]$msg) : base ($msg) {
}
}
2022-12-18 04:30:51 +00:00
class LoginError : VMRemoteError {
LoginError ([string]$msg) : base ($msg) {
}
}
2022-12-18 04:30:51 +00:00
class CAPIError : VMRemoteError {
[int]$code
[string]$function
CAPIError ([int]$code, [string]$function) : base ("$function returned $code") {
$this.code = $code
$this.function = $function
}
}