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]$retval
[string]$caller
CAPIError ([int]$retval, [string]$caller) : base ("$caller returned $retval") {
$this.retval = $retval
$this.caller = $caller
}
}