Skip to content

Commit

Permalink
Merge pull request #39 from sidhant92/array_math_functions
Browse files Browse the repository at this point in the history
fix error message
  • Loading branch information
sidhant92 authored Jun 11, 2024
2 parents 11ae8af + 9fe8614 commit 4cae722
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,4 @@ public class DataNotFoundException extends RuntimeException {
public DataNotFoundException(final String key) {
super(String.format(MESSAGE + " for the key %s", key));
}

@Override
public String getMessage() {
return MESSAGE;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,4 @@ public InvalidContainerTypeException(final String message) {
public InvalidContainerTypeException() {
super();
}

@Override
public String getMessage() {
return "Invalid Container Type";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,4 @@ public InvalidDataType(final String message) {
public InvalidDataType() {
super();
}

@Override
public String getMessage() {
return "Invalid Data Type";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,4 @@ public class InvalidExpressionException extends RuntimeException {
public InvalidExpressionException(final String message) {
super(message);
}

@Override
public String getMessage() {
return "Invalid Expression";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,4 @@ public UnsupportedToken(final String token) {
public UnsupportedToken() {
super();
}

@Override
public String getMessage() {
return MESSAGE;
}
}

0 comments on commit 4cae722

Please sign in to comment.