Skip to content

Commit

Permalink
Update LanguageServerConnection.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Oct 14, 2023
1 parent 270c3e8 commit f9c904d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/Draco.Lsp/Server/LanguageServerConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,3 @@ public LanguageServerConnection(IDuplexPipe transport)
protected override object CreateInvalidRequestError() => throw new NotImplementedException();
protected override object CreateJsonExceptionError(JsonException exception) => throw new NotImplementedException();
}

internal sealed class LspResponseException : Exception
{
public LspResponseException(ResponseError error) : base(error.Message)
{
this.ResponseError = error;
}

public ResponseError ResponseError { get; }
}

0 comments on commit f9c904d

Please sign in to comment.