From e797c2fdc08ef4c454ced520fce20431c771d4f4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 15 Oct 2017 22:59:23 +0200 Subject: [PATCH] Continued: - added new exception for not-found receipts MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../receipt/ReceiptNotFoundException.java | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/org/mxchange/jfinancials/exceptions/receipt/ReceiptNotFoundException.java diff --git a/src/org/mxchange/jfinancials/exceptions/receipt/ReceiptNotFoundException.java b/src/org/mxchange/jfinancials/exceptions/receipt/ReceiptNotFoundException.java new file mode 100644 index 0000000..f1a9d16 --- /dev/null +++ b/src/org/mxchange/jfinancials/exceptions/receipt/ReceiptNotFoundException.java @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2017 Roland Häder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.mxchange.jfinancials.exceptions.receipt; + +import java.text.MessageFormat; + +/** + * This exception is thrown when a receipt was not found. + *

+ * @author Roland Häder + */ +public class ReceiptNotFoundException extends Exception { + + /** + * Serial number + */ + private static final long serialVersionUID = 19_065_867_127_647_625L; + + /** + * Default constructor + */ + public ReceiptNotFoundException () { + super(); + } + + /** + * Constructor with receipt primary key + *

+ * @param receiptId Receipt primary key + */ + public ReceiptNotFoundException (final Long receiptId) { + // Call super constructor + super(MessageFormat.format("Receipt with id {0} was not found.", receiptId)); + } + +} -- 2.39.5