mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
15 lines
179 B
Go
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
|
|
}
|