main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
537 bytes
|
Line | |
---|
1 | package com.example.rezevirajmasa.demo.model.exceptions;
|
---|
2 |
|
---|
3 | public class ExpiredReservationException extends Exception {
|
---|
4 |
|
---|
5 | public ExpiredReservationException() {
|
---|
6 | super("The reservation has expired.");
|
---|
7 | }
|
---|
8 |
|
---|
9 | public ExpiredReservationException(String message) {
|
---|
10 | super(message);
|
---|
11 | }
|
---|
12 |
|
---|
13 | public ExpiredReservationException(String message, Throwable cause) {
|
---|
14 | super(message, cause);
|
---|
15 | }
|
---|
16 |
|
---|
17 | public ExpiredReservationException(Throwable cause) {
|
---|
18 | super("The reservation has expired.", cause);
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.