Skip to content

Commit

Permalink
Fix bug for isRetryable setting in InternalServerErrorException (#1675)
Browse files Browse the repository at this point in the history
  • Loading branch information
brycewang-microsoft authored Feb 23, 2023
1 parent a8db1ad commit 80a68bb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,25 @@ public class InternalServerErrorException extends IotHubServiceException
public InternalServerErrorException()
{
super();
this.isRetryable = true;
}

public InternalServerErrorException(String message)
{
super(message);
this.isRetryable = true;
}

public InternalServerErrorException(String message, Throwable cause)
{
super(message, cause);
this.isRetryable = true;
}

public InternalServerErrorException(Throwable cause)
{
super(cause);
this.isRetryable = true;
}

@Override
Expand Down

0 comments on commit 80a68bb

Please sign in to comment.