Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SalesforceBobLightning/ad6b6d7f12a6542f38b647756bad6368 to your computer and use it in GitHub Desktop.
Save SalesforceBobLightning/ad6b6d7f12a6542f38b647756bad6368 to your computer and use it in GitHub Desktop.
Custom Salesforce Apex Exception Class Without Constructor
private class CustomExceptionWithoutConstructor extends Exception {
public override String getMessage() {
List<String> args = new String[]{super.getMessage()};
return String.format('Your custom message here with one argument: {0}', args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment