Shaka Player Embedded
Main Page
Exported Types
+
Tutorials
Basic Tutorial
Network Filters
Internal Docs
+
Internal Class List
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
~
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Typedefs
a
b
d
e
f
h
i
l
m
r
s
t
v
Enumerations
+
Enumerator
a
b
c
d
e
k
n
p
t
v
+
Properties
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
+
Related Functions
:
a
c
d
g
j
m
o
p
r
s
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
shaka
src
js
dom
exception_code.h
Go to the documentation of this file.
1
// Copyright 2016 Google LLC
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// https://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
#ifndef SHAKA_EMBEDDED_JS_DOM_EXCEPTION_CODE_H_
16
#define SHAKA_EMBEDDED_JS_DOM_EXCEPTION_CODE_H_
17
18
#include <functional>
// for std::hash
19
20
namespace
shaka
{
21
22
enum
ExceptionCode
{
23
IndexSizeError
,
24
HierarchyRequestError
,
25
WrongDocumentError
,
26
InvalidCharacterError
,
27
NoModificationAllowedError
,
28
NotFoundError
,
29
NotSupportedError
,
30
InUseAttributeError
,
31
InvalidStateError
,
32
SyntaxError
,
33
InvalidModificationError
,
34
NamespaceError
,
35
InvalidAccessError
,
36
TypeMismatchError
,
37
SecurityError
,
38
NetworkError
,
39
AbortError
,
40
URLMismatchError
,
41
QuotaExceededError
,
42
TimeoutError
,
43
InvalidNodeTypeError
,
44
DataCloneError
,
45
EncodingError
,
46
NotReadableError
,
47
UnknownError
,
48
ConstraintError
,
49
DataError
,
50
TransactionInactiveError
,
51
ReadOnlyError
,
52
VersionError
,
53
OperationError
,
54
NotAllowedError
,
55
MaxExceptionCode
,
// Must remain last.
56
};
57
58
}
// namespace shaka
59
60
namespace
std
{
61
62
// Enumerations are not hashable until C++14.
63
template
<>
64
struct
hash<
shaka
::
ExceptionCode
> : hash<int> {};
65
66
}
// namespace std
67
68
#endif // SHAKA_EMBEDDED_JS_DOM_EXCEPTION_CODE_H_
shaka::InvalidNodeTypeError
Definition:
exception_code.h:43
shaka::EncodingError
Definition:
exception_code.h:45
shaka::IndexSizeError
Definition:
exception_code.h:23
shaka::NoModificationAllowedError
Definition:
exception_code.h:27
shaka::OperationError
Definition:
exception_code.h:53
shaka::SyntaxError
Definition:
exception_code.h:32
shaka::ExceptionCode
ExceptionCode
Definition:
exception_code.h:22
std
Definition:
exception_code.h:60
shaka::NetworkError
Definition:
exception_code.h:38
shaka::NotReadableError
Definition:
exception_code.h:46
shaka
Definition:
async_results.h:25
shaka::NotAllowedError
Definition:
exception_code.h:54
shaka::QuotaExceededError
Definition:
exception_code.h:41
shaka::ConstraintError
Definition:
exception_code.h:48
shaka::NotSupportedError
Definition:
exception_code.h:29
shaka::InUseAttributeError
Definition:
exception_code.h:30
shaka::InvalidCharacterError
Definition:
exception_code.h:26
shaka::DataError
Definition:
exception_code.h:49
shaka::InvalidModificationError
Definition:
exception_code.h:33
shaka::TypeMismatchError
Definition:
exception_code.h:36
shaka::URLMismatchError
Definition:
exception_code.h:40
shaka::NotFoundError
Definition:
exception_code.h:28
shaka::AbortError
Definition:
exception_code.h:39
shaka::TransactionInactiveError
Definition:
exception_code.h:50
shaka::NamespaceError
Definition:
exception_code.h:34
shaka::WrongDocumentError
Definition:
exception_code.h:25
shaka::InvalidStateError
Definition:
exception_code.h:31
shaka::MaxExceptionCode
Definition:
exception_code.h:55
shaka::ReadOnlyError
Definition:
exception_code.h:51
shaka::DataCloneError
Definition:
exception_code.h:44
shaka::InvalidAccessError
Definition:
exception_code.h:35
shaka::HierarchyRequestError
Definition:
exception_code.h:24
shaka::SecurityError
Definition:
exception_code.h:37
shaka::VersionError
Definition:
exception_code.h:52
shaka::TimeoutError
Definition:
exception_code.h:42
shaka::UnknownError
Definition:
exception_code.h:47
Generated by
1.8.13