-
Notifications
You must be signed in to change notification settings - Fork 3
/
OrcaErrors.swift
57 lines (42 loc) · 1.71 KB
/
OrcaErrors.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// Copyright 2024 Picovoice Inc.
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
// an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
//
public class OrcaError: LocalizedError {
private let message: String
private let messageStack: [String]
public init (_ message: String, _ messageStack: [String] = []) {
self.message = message
self.messageStack = messageStack
}
public var errorDescription: String? {
var messageString = message
if messageStack.count > 0 {
messageString += ":"
for i in 0..<messageStack.count {
messageString += "\n [\(i)] \(messageStack[i])"
}
}
return messageString
}
public var name: String {
get {
return String(describing: type(of: self))
}
}
}
public class OrcaMemoryError: OrcaError {}
public class OrcaIOError: OrcaError {}
public class OrcaInvalidArgumentError: OrcaError {}
public class OrcaStopIterationError: OrcaError {}
public class OrcaKeyError: OrcaError {}
public class OrcaInvalidStateError: OrcaError {}
public class OrcaRuntimeError: OrcaError {}
public class OrcaActivationError: OrcaError {}
public class OrcaActivationLimitError: OrcaError {}
public class OrcaActivationThrottledError: OrcaError {}
public class OrcaActivationRefusedError: OrcaError {}