Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaidioz committed Feb 26, 2025
1 parent fb4ba19 commit 584f677
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
package com.rawlabs.das.sdk;

/**
* DASSdkInvalidArgumentException is thrown by DAS SDK methods when an invalid argument error is to be reported
* to a user (e.g. string too long during an INSERT, missing mandatory predicate, etc.).
* DASSdkInvalidArgumentException is thrown by DAS SDK methods when an invalid argument error is to
* be reported to a user (e.g. string too long during an INSERT, missing mandatory predicate, etc.).
*/
public class DASSdkInvalidArgumentException extends RuntimeException {
public DASSdkInvalidArgumentException(String message) {
super(message);
}
public DASSdkInvalidArgumentException(String message) {
super(message);
}

public DASSdkInvalidArgumentException(String message, Throwable cause) {
super(message, cause);
}
public DASSdkInvalidArgumentException(String message, Throwable cause) {
super(message, cause);
}
}

0 comments on commit 584f677

Please sign in to comment.