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:
669 bytes
|
Line | |
---|
1 | package com.example.rezevirajmasa.demo.model.exceptions;
|
---|
2 |
|
---|
3 | public class InvalidReservationException extends RuntimeException{
|
---|
4 | public InvalidReservationException() {
|
---|
5 | }
|
---|
6 |
|
---|
7 | public InvalidReservationException(String message) {
|
---|
8 | super(message);
|
---|
9 | }
|
---|
10 |
|
---|
11 | public InvalidReservationException(String message, Throwable cause) {
|
---|
12 | super(message, cause);
|
---|
13 | }
|
---|
14 |
|
---|
15 | public InvalidReservationException(Throwable cause) {
|
---|
16 | super(cause);
|
---|
17 | }
|
---|
18 |
|
---|
19 | public InvalidReservationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
---|
20 | super(message, cause, enableSuppression, writableStackTrace);
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.