001/* -*- mode: Java; c-basic-offset: 2; indent-tabs-mode: nil; coding: utf-8-unix -*- 002 * 003 * Copyright © 2023–2024 microBean™. 004 * 005 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with 006 * the License. You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on 011 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the 012 * specific language governing permissions and limitations under the License. 013 */ 014package org.microbean.bean; 015 016public class UnsatisfiedReductionException extends ReductionException { 017 018 private static final long serialVersionUID = 1L; 019 020 public UnsatisfiedReductionException() { 021 super(); 022 } 023 024 public UnsatisfiedReductionException(final Object criteria) { 025 super(criteria); 026 } 027 028 public UnsatisfiedReductionException(final String message) { 029 super(message); 030 } 031 032 public UnsatisfiedReductionException(final Object criteria, 033 final String message) { 034 super(criteria, message); 035 } 036 037 public UnsatisfiedReductionException(final Throwable cause) { 038 super(cause); 039 } 040 041 public UnsatisfiedReductionException(final Object criteria, 042 final Throwable cause) { 043 super(criteria, cause); 044 } 045 046 public UnsatisfiedReductionException(final String message, final Throwable cause) { 047 super(message, cause); 048 } 049 050 public UnsatisfiedReductionException(final Object criteria, 051 final String message, 052 final Throwable cause) { 053 super(criteria, message, cause); 054 } 055 056}