blob: 3914ec79dba331ba4f01b238c59d3fb5b8beab49 (
plain)
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
|
// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
package binstruct
import (
"fmt"
"reflect"
)
type InvalidTypeError struct {
Type reflect.Type
Err error
}
func (e *InvalidTypeError) Error() string {
return fmt.Sprintf("%v: %v", e.Type, e.Err)
}
func (e *InvalidTypeError) Unwrap() error { return e.Err }
type UnmarshalError struct {
Type reflect.Type
Method string
Err error
}
func (e *UnmarshalError) Error() string {
if e.Method == "" {
return fmt.Sprintf("%v: %v", e.Type, e.Err)
}
return fmt.Sprintf("(%v).%v: %v", e.Type, e.Method, e.Err)
}
func (e *UnmarshalError) Unwrap() error { return e.Err }
type MarshalError struct {
Type reflect.Type
Method string
Err error
}
func (e *MarshalError) Error() string {
if e.Method == "" {
return fmt.Sprintf("%v: %v", e.Type, e.Err)
}
return fmt.Sprintf("(%v).%v: %v", e.Type, e.Method, e.Err)
}
func (e *MarshalError) Unwrap() error { return e.Err }
|