-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.go
More file actions
63 lines (56 loc) · 2.43 KB
/
error.go
File metadata and controls
63 lines (56 loc) · 2.43 KB
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
// Copyright 2026 Joshua Jones <joshua.jones.software@gmail.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package hl7
import (
"errors"
"fmt"
)
// Sentinel errors for HL7 message parsing failures.
var (
ErrMessageTooShort = errors.New("hl7: message too short")
ErrNoMSHSegment = errors.New("hl7: message must begin with MSH segment")
ErrInvalidMSH = errors.New("hl7: malformed MSH segment header")
ErrInvalidDelimiter = errors.New("hl7: invalid delimiter character")
ErrDuplicateDelimiter = errors.New("hl7: duplicate delimiter characters")
ErrSegmentNotFound = errors.New("hl7: segment not found")
ErrFieldOutOfRange = errors.New("hl7: field index out of range")
ErrInvalidLocation = errors.New("hl7: invalid location string")
ErrMLLPFraming = errors.New("hl7: invalid MLLP framing")
ErrMLLPMissingEnd = errors.New("hl7: MLLP end block not found")
ErrMLLPMissingStart = errors.New("hl7: MLLP start block not found")
ErrBatchStructure = errors.New("hl7: invalid batch structure")
ErrMSHDelimiterField = errors.New("hl7: cannot modify MSH-1 or MSH-2 (delimiter fields)")
ErrDelimiterMismatch = errors.New("hl7: delimiter mismatch between messages")
ErrCannotDeleteMSH = errors.New("hl7: cannot delete MSH segment")
ErrInvalidADDContinuation = errors.New("hl7: ADD cannot continue segment")
ErrFrameTooLarge = errors.New("hl7: MLLP frame exceeds maximum size")
)
// ParseError provides detailed context about a parsing failure.
type ParseError struct {
Err error
Position int
Context string
}
func (e *ParseError) Error() string {
if e.Context != "" {
return fmt.Sprintf("%s at position %d: %s", e.Err, e.Position, e.Context)
}
return fmt.Sprintf("%s at position %d", e.Err, e.Position)
}
func (e *ParseError) Unwrap() error {
return e.Err
}
func newParseError(err error, pos int, ctx string) *ParseError {
return &ParseError{Err: err, Position: pos, Context: ctx}
}