Skip to content

Commit

Permalink
Update Exceptions.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekctek committed Apr 26, 2023
1 parent bcfbb59 commit 6ea1d9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Agent/Exceptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ public CallRejectedException(RejectCode rejectCode, string rejectMessage, string
this.RejectMessage = rejectMessage;
this.ErrorCode = errorCode;
}

/// <inheritdoc />
public override string Message => $"Call was rejected. Code: {this.RejectCode}, Message: {this.RejectMessage}, ErrorCode: {this.ErrorCode}";
}

/// <summary>
Expand Down

0 comments on commit 6ea1d9e

Please sign in to comment.