Documentation
¶
Overview ¶
Package sourceerror implements an error type that wraps another error instance. That error type includes the file name, line number, and function name where the error occurred, along with original error's text.
Copyright © 2024 M.Watermann, 10247 Berlin, Germany
All rights reserved
EMail : <support@mwat.de>
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
You should have received a copy of the GNU General Public License along with this program. If not, see the [GNU General Public License](http://www.gnu.org/licenses/gpl.html) for details.
Copyright © 2024 M.Watermann, 10247 Berlin, Germany
All rights reserved EMail : <support@mwat.de>
Index ¶
Constants ¶
const (
// The constant error message of the `ErrSourceLocation` error type.
StrCodeLocation = "error in code"
)
Variables ¶
var ( // If set true, the SourceError function basically become a NoOp. NODEBUG bool )
Functions ¶
func SourceError ¶
`SourceError()` is a function that wraps an error with additional information about the location where the error occurred. It uses certain `runtime` functions to determine the file- and function-names, as well as the code line. The `aLines` parameter allows for adjusting the reported line number by subtracting the specified number of lines from the actual line number.
NOTE: If the global `NODEBUG` flag is `true`, this function simply returns he given `aErr`, skipping the error location investigation.
Parameters: - aErr: The error to be wrapped. - aLines: The number of lines to subtract from the caller's line number.
Returns: - `error`: A new `ErrSourceLocation` instance that contains the original error, file, function, and adjusted line number of the code causing `aErr`.
Types ¶
type ErrSourceLocation ¶
type ErrSourceLocation struct {
File string
Function string
Line int
// contains filtered or unexported fields
}
func (ErrSourceLocation) Error ¶
func (se ErrSourceLocation) Error() string
`Error()` returns a string representation of the error message along with the error location.
It includes the file name, line number, and function name where the error occurred, along with original error's text.
Returns: - `string`: a string representation of the error message and location.
func (ErrSourceLocation) String ¶
func (se ErrSourceLocation) String() string
`String()` implements the `Stringer` interface and returns a string representation of the error location.
It includes the file name, line number, and function name where the error occurred.
Returns: - `string`: a string representation of the error location.
func (ErrSourceLocation) Unwrap ¶
func (se ErrSourceLocation) Unwrap() error
`Unwrap()` returns the original error that was wrapped by `ErrSourceLocation`.
Returns: - `error`: the original error.
