forked from Cysharp/MemoryPack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMemoryPackSerializationException.cs
131 lines (109 loc) · 4.42 KB
/
MemoryPackSerializationException.cs
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
using System.Buffers;
using System.Diagnostics.CodeAnalysis;
namespace MemoryPack;
public class MemoryPackSerializationException : Exception
{
public MemoryPackSerializationException(string message)
: base(message)
{
}
public MemoryPackSerializationException(string message, Exception innerException)
: base(message, innerException)
{
}
[DoesNotReturn]
public static void ThrowMessage(string message)
{
throw new MemoryPackSerializationException(message);
}
[DoesNotReturn]
public static void ThrowInvalidPropertyCount(byte expected, byte actual)
{
throw new MemoryPackSerializationException($"Current object's property count is {expected} but binary's header maked as {actual}, can't deserialize about versioning.");
}
[DoesNotReturn]
public static void ThrowInvalidCollection()
{
throw new MemoryPackSerializationException($"Current read to collection, the buffer header is not collection.");
}
[DoesNotReturn]
public static void ThrowInvalidRange(int expected, int actual)
{
throw new MemoryPackSerializationException($"Requires size is {expected} but buffer length is {actual}.");
}
[DoesNotReturn]
public static void ThrowInvalidAdvance()
{
throw new MemoryPackSerializationException($"Cannot advance past the end of the buffer.");
}
[DoesNotReturn]
public static void ThrowSequenceReachedEnd()
{
throw new MemoryPackSerializationException($"Sequence reached end, reader can not provide more buffer.");
}
[DoesNotReturn]
public static void ThrowWriteInvalidMemberCount(byte memberCount)
{
throw new MemoryPackSerializationException($"MemberCount/Tag allows < 250 but try to write {memberCount}.");
}
[DoesNotReturn]
public static void ThrowInsufficientBufferUnless(int length)
{
throw new MemoryPackSerializationException($"Length header size is larger than buffer size, length: {length}.");
}
[DoesNotReturn]
public static void ThrowNotRegisteredInProvider(Type type)
{
throw new MemoryPackSerializationException($"{type.FullName} is not registered in this provider.");
}
[DoesNotReturn]
public static void ThrowRegisterInProviderFailed(Type type, Exception innerException)
{
throw new MemoryPackSerializationException($"{type.FullName} is failed in provider at creating formatter.", innerException);
}
[DoesNotReturn]
public static void ThrowNotFoundInUnionType(Type actualType, Type baseType)
{
throw new MemoryPackSerializationException($"Type {actualType.FullName} is not annotated in {baseType.FullName} MemoryPackUnion.");
}
[DoesNotReturn]
public static void ThrowInvalidTag(ushort tag, Type baseType)
{
throw new MemoryPackSerializationException($"Data read tag: {tag} but not found in {baseType.FullName} MemoryPackUnion annotations.");
}
[DoesNotReturn]
public static void ThrowReachedDepthLimit(Type type)
{
throw new MemoryPackSerializationException($"Serializing Type '{type}' reached depth limit, maybe detect circular reference.");
}
[DoesNotReturn]
public static void ThrowInvalidConcurrrentCollectionOperation()
{
throw new MemoryPackSerializationException($"ConcurrentCollection is Added/Removed in serializing, however serialize concurrent collection is not thread-safe.");
}
[DoesNotReturn]
public static void ThrowDeserializeObjectIsNull(string target)
{
throw new MemoryPackSerializationException($"Deserialized {target} is null.");
}
[DoesNotReturn]
public static void ThrowFailedEncoding(OperationStatus status)
{
throw new MemoryPackSerializationException($"Failed in Utf8 encoding/decoding process, status: {status}.");
}
[DoesNotReturn]
public static void ThrowCompressionFailed(OperationStatus status)
{
throw new MemoryPackSerializationException($"Failed in Brotli compression/decompression process, status: {status}.");
}
[DoesNotReturn]
public static void ThrowCompressionFailed()
{
throw new MemoryPackSerializationException($"Failed in Brotli compression/decompression process.");
}
[DoesNotReturn]
public static void ThrowAlreadyDecompressed()
{
throw new MemoryPackSerializationException($"BrotliDecompressor can not invoke Decompress twice, already invoked.");
}
}