Skip to content

Commit

Permalink
Add serialVersionUIDs to the exceptions (#285)
Browse files Browse the repository at this point in the history
Co-authored-by: Isuru Maldeniya <[email protected]>
  • Loading branch information
isurumaldeniya and Isuru Maldeniya authored Oct 6, 2022
1 parent a1a32de commit b588e0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

def runeLiteVersion = '1.8.34.1'
def runeLiteVersion = '1.9.0'

dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

public class NotRecognizedCommandException extends RuntimeException {
private final String reason;
private static final long serialVersionUID = 4328743L;

public NotRecognizedCommandException(String unsupportedCommandName) {
this.reason = String.format(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

public class NotSupportedCommandException extends RuntimeException {
private final String reason;
private static final long serialVersionUID = 4328741L;

public NotSupportedCommandException(HydrateReminderCommandArgs unrecognizedCommandName) {
this.reason = String.format(
Expand Down

0 comments on commit b588e0c

Please sign in to comment.