Skip to content

Commit

Permalink
fix: Satisfy checkstyle, make spelling consistent
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Roberts <[email protected]>
  • Loading branch information
ryan-s-roberts committed Jun 29, 2021
1 parent 19bc663 commit 9c19176
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
import java.io.IOException;

/**
* Indicates a missing authorisation header
* Indicates a missing authorization header.
*/
public class AuthorizationHeaderMissing extends IOException {
/**
* There is no authorization header.
*/
public AuthorizationHeaderMissing() {
super("Authorization header not present");
}
Expand Down

0 comments on commit 9c19176

Please sign in to comment.