Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,16 @@ default boolean equalsBySdkFields(Object other) {
default Map<String, SdkField<?>> sdkFieldNameToField() {
throw new UnsupportedOperationException();
}

// TODO: Consider adding public void validateFields() method in future
/* Example usage: public void someMethod() throws ValidationException */
/**
* Example of method signature:
* <pre>
* public void exampleMethod() {
* // implementation here
* }
* </pre>
*/
private static final String ERROR_TEMPLATE = "Failed to call public method()";
}
Loading