mirror of
https://github.com/onyx-and-iris/vbantxt.git
synced 2025-04-01 20:03:51 +01:00
11 lines
242 B
Go
11 lines
242 B
Go
// Package vbantxt provides utilities for handling VBAN text errors.
|
|
package vbantxt
|
|
|
|
// Error is used to define sentinel errors.
|
|
type Error string
|
|
|
|
// Error implements the error interface.
|
|
func (r Error) Error() string {
|
|
return string(r)
|
|
}
|