Extended version of 1lann/messenger
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package messenger |
|
|
|
// ParseError is returned if an error due to parsing occurs. |
|
type ParseError struct { |
|
message string |
|
} |
|
|
|
// Error returns the detailed parse error message. |
|
func (p ParseError) Error() string { |
|
return "messenger: " + p.message |
|
}
|
|
|