Skip to content

Instantly share code, notes, and snippets.

@gogarufi
Created February 13, 2017 22:21
Show Gist options
  • Save gogarufi/9414c3652bd602aab30d529d64723fee to your computer and use it in GitHub Desktop.
Save gogarufi/9414c3652bd602aab30d529d64723fee to your computer and use it in GitHub Desktop.
Email service exception parent class
package com.gogarufi.lambda.ses;
class EmailServiceException extends Throwable {
EmailServiceException(Throwable e) {
super(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment