config-lsp/common/errors.go
2024-08-25 11:06:28 +02:00

15 lines
179 B
Go

package common
type LSPError struct {
Range LocationRange
Err error
}
type SyntaxError struct {
Message string
}
func (s SyntaxError) Error() string {
return s.Message
}