]> git.mxchange.org Git - jcontacts-business-core.git/blob - src/org/mxchange/jcontactsbusiness/exceptions/branchoffice/BranchOfficeNotFoundException.java
Updated jar(s)
[jcontacts-business-core.git] / src / org / mxchange / jcontactsbusiness / exceptions / branchoffice / BranchOfficeNotFoundException.java
1 /*
2  * Copyright (C) 2016 - 2018 Free Software Foundation
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.jcontactsbusiness.exceptions.branchoffice;
18
19 import java.text.MessageFormat;
20
21 /**
22  * An exception thrown when a branch office (entity) has not found.
23  * <p>
24  * @author Roland Häder<roland@mxchange.org>
25  */
26 public class BranchOfficeNotFoundException extends Exception {
27
28         /**
29          * Serial number
30          */
31         private static final long serialVersionUID = 23_759_801_876_416_570L;
32
33         /**
34          * Constructor with branch office id
35          * <p>
36          * @param branchOfficeId Branch office id
37          */
38         public BranchOfficeNotFoundException (final Long branchOfficeId) {
39                 // Call super constructor with message and cause
40                 super(MessageFormat.format("Branch office with id {0} was not found.", branchOfficeId)); //NOI18N
41         }
42
43         /**
44          * Constructor with branch office id and causing exception
45          * <p>
46          * @param branchOfficeId Branch office id
47          * @param cause          Causing exception
48          */
49         public BranchOfficeNotFoundException (final Long branchOfficeId, final Throwable cause) {
50                 // Call super constructor with message and cause
51                 super(MessageFormat.format("Branch office with id {0} was not found.", branchOfficeId), cause); //NOI18N
52         }
53
54         /**
55          * Constructor with email address and causing exception
56          * <p>
57          * @param emailAddress Email address
58          * @param cause        Causing exception
59          */
60         public BranchOfficeNotFoundException (final String emailAddress, final Throwable cause) {
61                 // Call super constructor with message and cause
62                 super(MessageFormat.format("Branch office with email address {0} was not found.", emailAddress), cause); //NOI18N
63         }
64
65 }