UNPKG
rw-parser
Version:
latest (2.0.0)
2.0.0
1.5.0
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Parses RenderWare DFF and TXD files into usable format!
github.com/Timic3/rw-parser
Timic3/rw-parser
rw-parser
/
src
/
renderware
/
errors
/
RwParseError.ts
12 lines
(10 loc)
•
282 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
class
RwParseError
extends
Error
{
constructor
(
message
?:
string
) {
super
(message); } }
export
class
RwParseStructureNotFoundError
extends
RwParseError
{
constructor
(
structureName
:
string
) {
super
(
`Structure
${structureName}
not found.`
); } }