diff options
Diffstat (limited to 'error.go')
-rw-r--r-- | error.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/error.go b/error.go deleted file mode 100644 index 0ad5a42..0000000 --- a/error.go +++ /dev/null @@ -1,12 +0,0 @@ -package sleepy - -// ErrorString is an Error that returns a string -// representation. -type ErrorString struct { - s string -} - -// Returns the string associated with this ErrorString. -func (e *ErrorString) Error() string { - return e.s -} |