forked from unoconv/unoconv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrcode.txt
68 lines (52 loc) · 1.98 KB
/
errcode.txt
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
58
59
60
61
62
63
64
65
66
67
68
= LibreOffice error codes
Since various people have reported issues using unoconv related to LibreOffice,
it's clear we need to list the various errors and give some explanation.
If you have more information to improve this document, let me know !
== How to decipher LibreOffice error codes
Unfortunately the LibreOffice error codes is a combination of project area,
error class and error code. The combination of these three provides some
indication of what the cause is, although in most cases this is not conclusive.
The authoritative source for ErrCodes are the following files:
List of ErrCode classifications::
http://cgit.freedesktop.org/libreoffice/core/tree/tools/inc/tools/errcode.hxx
List of SFX (?) related ErrCode classifications::
- http://cgit.freedesktop.org/libreoffice/core/tree/svtools/inc/svtools/sfxecode.hxx
- http://cgit.freedesktop.org/libreoffice/core/tree/svtools/inc/svtools/soerr.hxx
----
01234567012345670123456701234567
|| || ||| || |
Warning || || |
| || || || |
Dynamic || || |
| || || |
Subsystemarea| || |
| || |
| || |
| || |
Class| |
| |
| |
| |
Code
----
== UnoException ErrCode
1287::
Binary: 000:00101:00000111
Area: 0 (ERRCODE_AREA_TOOLS)
Class: 5 (ERRCODE_CLASS_ACCESS)
Code: 7 (ERRCODE_IO_ACCESSDENIED)
2074::
Binary: 000:01000:00011010
Area: 0 (ERRCODE_AREA_TOOLS)
Class: 8 (ERRCODE_CLASS_PARAMETER)
Code: 26 (ERRCODE_IO_INVALIDPARAMETER)
3088::
Binary: 000:01100:00010000
Area: 0 (ERRCODE_AREA_TOOLS)
Class: 12 (ERRCODE_CLASS_WRITE)
Code: 16 (ERRCODE_IO_CANTWRITE)
19468::
Binary: 010:01100:00001100
Area: 2 (ERRCODE_AREA_SFX)
Class: 12 (ERRCODE_CLASS_WRITE)
Code: 12 (ERRCODE_IO_NOTSUPPORTED)