mirror of
https://github.com/aljazceru/signal-cli-rest-api.git
synced 2026-01-11 19:04:49 +01: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
|
|
}
|