source:
src/main/java/com/example/exceptions/NoSuchUsernameException.java
Last change on this file was a51a591, checked in by , 14 months ago | |
---|---|
|
|
File size: 333 bytes |
Line | |
---|---|
1 | package com.example.exceptions; |
2 | |
3 | import org.springframework.http.HttpStatus; |
4 | import org.springframework.web.bind.annotation.ResponseStatus; |
5 | |
6 | @ResponseStatus(code = HttpStatus.NOT_FOUND) |
7 | public class NoSuchUsernameException extends RuntimeException{ |
8 | |
9 | public NoSuchUsernameException() { |
10 | super("No such username."); |
11 | } |
12 | |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.