]> git.mxchange.org Git - jproduct-core.git/blob - src/org/mxchange/jproduct/exceptions/product/ProductNotFoundException.java
Continued:
[jproduct-core.git] / src / org / mxchange / jproduct / exceptions / product / ProductNotFoundException.java
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jproduct.exceptions.product;
18
19 import java.text.MessageFormat;
20
21 /**
22  * An exception thrown when a product has not found.
23  * <p>
24  * @author Roland Häder<roland@mxchange.org>
25  */
26 public class ProductNotFoundException extends Exception {
27
28         /**
29          * Serial number
30          */
31         private static final long serialVersionUID = 48_574_857_485_748_176L;
32
33         /**
34          * Constructor with cause
35          * <p>
36          * @param cause Causing exception
37          */
38         public ProductNotFoundException (final Throwable cause) {
39                 // Call super constructor
40                 super(cause);
41         }
42
43         /**
44          * Constructor with product id
45          * <p>
46          * @param productId Product id
47          */
48         public ProductNotFoundException (final Long productId) {
49                 // Call super constructor
50                 super(MessageFormat.format("Product with id {0} not found.", productId)); //NOI18N
51         }
52
53 }