LeviLamina
Loading...
Searching...
No Matches
RTCErrorType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class RTCErrorType : int {
8 None = 0,
9 UnsupportedOperation = 1,
10 UnsupportedParameter = 2,
11 InvalidParameter = 3,
12 InvalidRange = 4,
13 SyntaxError = 5,
14 InvalidState = 6,
15 InvalidModification = 7,
16 NetworkError = 8,
17 ResourceExhausted = 9,
18 InternalError = 10,
19 OperationErrorWithData = 11,
20};
21
22}