Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Created April 27, 2020 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CheolhoJeon/d1d1fd3b0573dd12aa1bc729f9173dbf to your computer and use it in GitHub Desktop.
Save CheolhoJeon/d1d1fd3b0573dd12aa1bc729f9173dbf to your computer and use it in GitHub Desktop.
package controller;
public class ErrorResponse {
private String message;
public ErrorResponse(String message) {
this.message = message;
}
public String getMessage() {
return message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment