Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Couchbase.AnalyticsClient.Exceptions;
using Couchbase.Grpc.Protocol.Columnar;
using Columnar_InvalidCredentialException = Couchbase.Grpc.Protocol.Columnar.InvalidCredentialException;
using InvalidCredentialException = Couchbase.AnalyticsClient.Exceptions.InvalidCredentialException;
using QueryException = Couchbase.AnalyticsClient.Exceptions.QueryException;

Expand Down Expand Up @@ -33,7 +32,7 @@ public static Error ToProtoError(this Exception exception)
};
}

if (exception is Columnar_InvalidCredentialException)
if (exception is InvalidCredentialException)
{
columnarError.SubException = new SubColumnarError
{
Expand Down
Loading