Documentation
¶
Index ¶
- type DocumentError
- func (e DocumentError) Code() ErrorCode
- func (e DocumentError) ErrCode() int
- func (e DocumentError) Error() string
- func (e DocumentError) Filename() string
- func (e DocumentError) IncorrectUserType() string
- func (e DocumentError) Index() bytes.Index
- func (e *DocumentError) Line() uint
- func (e DocumentError) Message() string
- func (e DocumentError) Position() uint
- func (e *DocumentError) SetFile(file *fs.File)
- func (e *DocumentError) SetIncorrectUserType(s string)
- func (e *DocumentError) SetIndex(index bytes.Index)
- func (e *DocumentError) SetMessage(message string)
- func (e *DocumentError) SourceSubString() string
- func (e *DocumentError) String() string
- type Err
- type Error
- type ErrorCode
- type Errorf
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DocumentError ¶
type DocumentError struct {
// contains filtered or unexported fields
}
DocumentError contains methods for forming a detailed description of the error for a person. The resulting message will contain the filename, line number, and where the error occurred.
func NewDocumentError ¶
func NewDocumentError(file *fs.File, err Err) DocumentError
func (DocumentError) Code ¶
func (e DocumentError) Code() ErrorCode
func (DocumentError) ErrCode ¶
func (e DocumentError) ErrCode() int
func (DocumentError) Error ¶
func (e DocumentError) Error() string
func (DocumentError) Filename ¶
func (e DocumentError) Filename() string
func (DocumentError) IncorrectUserType ¶
func (e DocumentError) IncorrectUserType() string
func (DocumentError) Index ¶
func (e DocumentError) Index() bytes.Index
func (*DocumentError) Line ¶
func (e *DocumentError) Line() uint
Line returns 0, if cannot determine the line number, or 1+ if it can.
func (DocumentError) Message ¶
func (e DocumentError) Message() string
func (DocumentError) Position ¶
func (e DocumentError) Position() uint
func (*DocumentError) SetFile ¶
func (e *DocumentError) SetFile(file *fs.File)
func (*DocumentError) SetIncorrectUserType ¶
func (e *DocumentError) SetIncorrectUserType(s string)
func (*DocumentError) SetIndex ¶
func (e *DocumentError) SetIndex(index bytes.Index)
func (*DocumentError) SetMessage ¶
func (e *DocumentError) SetMessage(message string)
func (*DocumentError) SourceSubString ¶
func (e *DocumentError) SourceSubString() string
SourceSubString returns empty string, if cannot determine the source sub-string.
func (*DocumentError) String ¶
func (e *DocumentError) String() string
type ErrorCode ¶
type ErrorCode int //nolint:errname // This is okay.
const ( ErrGeneric ErrorCode = 0 ErrImpossible ErrorCode = 1 // main & common ErrUserTypeFound ErrorCode = 101 ErrUnknownType ErrorCode = 102 ErrUnknownJSchemaType ErrorCode = 103 // validator ErrValidator ErrorCode = 201 ErrEmptySchema ErrorCode = 202 ErrEmptyJson ErrorCode = 203 ErrOrRuleSetValidation ErrorCode = 204 ErrRequiredKeyNotFound ErrorCode = 205 ErrSchemaDoesNotSupportKey ErrorCode = 206 ErrUnexpectedLexInLiteralValidator ErrorCode = 207 ErrUnexpectedLexInObjectValidator ErrorCode = 208 ErrUnexpectedLexInArrayValidator ErrorCode = 209 ErrInvalidValueType ErrorCode = 210 ErrInvalidKeyType ErrorCode = 211 ErrUnexpectedLexInMixedValidator ErrorCode = 212 // scanner ErrInvalidCharacter ErrorCode = 301 ErrInvalidCharacterInAnnotationObjectKey ErrorCode = 302 ErrUnexpectedEOF ErrorCode = 303 ErrAnnotationNotAllowed ErrorCode = 304 // schema ErrNodeGrow ErrorCode = 401 ErrDuplicateKeysInSchema ErrorCode = 402 ErrDuplicationOfNameOfTypes ErrorCode = 403 // node ErrDuplicateRule ErrorCode = 501 // constraint ErrUnknownRule ErrorCode = 601 ErrConstraintValidation ErrorCode = 602 ErrConstraintStringLengthValidation ErrorCode = 603 ErrInvalidValueOfConstraint ErrorCode = 604 ErrZeroPrecision ErrorCode = 605 ErrEmptyEmail ErrorCode = 606 ErrInvalidEmail ErrorCode = 607 ErrConstraintMinItemsValidation ErrorCode = 608 ErrConstraintMaxItemsValidation ErrorCode = 609 ErrDoesNotMatchAnyOfTheEnumValues ErrorCode = 610 ErrDoesNotMatchRegularExpression ErrorCode = 611 ErrInvalidUri ErrorCode = 612 ErrInvalidDateTime ErrorCode = 613 ErrInvalidUuid ErrorCode = 614 ErrInvalidConst ErrorCode = 615 ErrInvalidDate ErrorCode = 616 // loader ErrInvalidSchemaName ErrorCode = 701 ErrInvalidSchemaNameInAllOfRule ErrorCode = 702 ErrUnacceptableRecursionInAllOfRule ErrorCode = 703 ErrUnacceptableUserTypeInAllOfRule ErrorCode = 704 ErrConflictAdditionalProperties ErrorCode = 705 // rule loader ErrLoader ErrorCode = 801 ErrIncorrectRuleValueType ErrorCode = 802 ErrIncorrectRuleWithoutExample ErrorCode = 803 ErrIncorrectRuleForSeveralNode ErrorCode = 804 ErrLiteralValueExpected ErrorCode = 805 ErrArrayWasExpectedInEnumRule ErrorCode = 806 ErrIncorrectArrayItemTypeInEnumRule ErrorCode = 807 ErrUnacceptableValueInAllOfRule ErrorCode = 808 ErrTypeNameNotFoundInAllOfRule ErrorCode = 809 ErrDuplicationInEnumRule ErrorCode = 810 // "or" rule loader ErrArrayWasExpectedInOrRule ErrorCode = 901 ErrEmptyArrayInOrRule ErrorCode = 902 ErrOneElementInArrayInOrRule ErrorCode = 903 ErrIncorrectArrayItemTypeInOrRule ErrorCode = 904 ErrEmptyRuleSet ErrorCode = 905 // compiler ErrRuleOptionalAppliesOnlyToObjectProperties ErrorCode = 1101 ErrCannotSpecifyOtherRulesWithTypeReference ErrorCode = 1102 ErrShouldBeNoOtherRulesInSetWithOr ErrorCode = 1103 ErrShouldBeNoOtherRulesInSetWithEnum ErrorCode = 1104 ErrShouldBeNoOtherRulesInSetWithAny ErrorCode = 1105 ErrInvalidNestedElementsFoundForTypeAny ErrorCode = 1106 ErrInvalidChildNodeTogetherWithTypeReference ErrorCode = 1107 ErrInvalidChildNodeTogetherWithOrRule ErrorCode = 1108 ErrConstraintMinNotFound ErrorCode = 1109 ErrConstraintMaxNotFound ErrorCode = 1110 ErrInvalidValueInTheTypeRule ErrorCode = 1111 ErrNotFoundRulePrecision ErrorCode = 1112 ErrNotFoundRuleEnum ErrorCode = 1113 ErrNotFoundRuleOr ErrorCode = 1114 ErrIncompatibleTypes ErrorCode = 1115 ErrUnknownAdditionalPropertiesTypes ErrorCode = 1116 ErrUnexpectedConstraint ErrorCode = 1117 // checker ErrChecker ErrorCode = 1201 ErrElementNotFoundInArray ErrorCode = 1203 ErrIncorrectConstraintValueForEmptyArray ErrorCode = 1204 // link checker ErrIncorrectUserType ErrorCode = 1301 ErrTypeNotFound ErrorCode = 1302 ErrImpossibleToDetermineTheJsonTypeDueToRecursion ErrorCode = 1303 // sdk ErrEmptyType ErrorCode = 1401 ErrUnnecessaryLexemeAfterTheEndOfEnum ErrorCode = 1402 // regex ErrRegexUnexpectedStart ErrorCode = 1500 ErrRegexUnexpectedEnd ErrorCode = 1501 )
Click to show internal directories.
Click to hide internal directories.