mirror of
https://github.com/bbernhard/signal-cli-rest-api.git
synced 2026-01-26 19:03:33 +00:00
26 lines
372 B
Go
26 lines
372 B
Go
package client
|
|
|
|
type InvalidNameError struct {
|
|
Description string
|
|
}
|
|
|
|
func (e *InvalidNameError) Error() string {
|
|
return e.Description
|
|
}
|
|
|
|
type NotFoundError struct {
|
|
Description string
|
|
}
|
|
|
|
func (e *NotFoundError) Error() string {
|
|
return e.Description
|
|
}
|
|
|
|
type InternalError struct {
|
|
Description string
|
|
}
|
|
|
|
func (e *InternalError) Error() string {
|
|
return e.Description
|
|
}
|