Browse Source

parser errors

master
Brett Langdon 10 years ago
parent
commit
c7f8fa356e
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      parser/error.go

+ 9
- 0
parser/error.go View File

@ -0,0 +1,9 @@
package parser
type Error struct {
Message string
}
func (e Error) Error() string {
return e.Message
}

Loading…
Cancel
Save