All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.codecrete.qrbill.generator.QRBillGenerationException Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
//
// Swiss QR Bill Generator
// Copyright (c) 2017 Manuel Bleichenbacher
// Licensed under MIT License
// https://opensource.org/licenses/MIT
//
package net.codecrete.qrbill.generator;

/**
 * Exception thrown if the bill could not be generated.
 * 

* If the bill data is not valid, a {@link QRBillValidationError} exception is thrown instead. *

*/ public class QRBillGenerationException extends RuntimeException { private static final long serialVersionUID = 6512029854952325813L; /** * Constructs a new runtime exception with the specified detail message. * * @param message detail message */ public QRBillGenerationException(String message) { super(message); } /** * Constructs a new runtime exception with the specified cause. * * @param cause cause */ public QRBillGenerationException(Throwable cause) { super(cause); } /** * Constructs a new runtime exception with the specified detail message and * cause. * * @param message detail message * @param cause cause */ public QRBillGenerationException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy