Skip to content

Instantly share code, notes, and snippets.

@eugenp
Created October 22, 2011 22:20
Show Gist options
  • Save eugenp/1306557 to your computer and use it in GitHub Desktop.
Save eugenp/1306557 to your computer and use it in GitHub Desktop.
Bootstraping a web application with Spring 3.1 and Java based Configuration, part 2 - the exceptions
@ResponseStatus( value = HttpStatus.BAD_REQUEST )
public final class BadRequestException extends RuntimeException{
//
}
@ResponseStatus( value = HttpStatus.NOT_FOUND )
public final class ResourceNotFoundException extends RuntimeException{
//
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment