-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Laird Nelson <ljnelson@gmail.com>
- Loading branch information
Showing
37 changed files
with
1,025 additions
and
1,319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
73 changes: 73 additions & 0 deletions
73
src/main/java/org/microbean/bean/AmbiguousReductionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* -*- mode: Java; c-basic-offset: 2; indent-tabs-mode: nil; coding: utf-8-unix -*- | ||
* | ||
* Copyright © 2023–2024 microBean™. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package org.microbean.bean; | ||
|
||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
public class AmbiguousReductionException extends ReductionException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private final transient Collection<?> alternates; | ||
|
||
public AmbiguousReductionException() { | ||
this(null, null, null, null); | ||
} | ||
|
||
public AmbiguousReductionException(final Collection<?> alternates, | ||
final String message) { | ||
this(null, alternates, message, null); | ||
} | ||
|
||
public AmbiguousReductionException(final Object criteria, | ||
final Collection<?> alternates, | ||
final String message) { | ||
this(criteria, alternates, message, null); | ||
} | ||
|
||
public AmbiguousReductionException(final Collection<?> alternates, | ||
final Throwable cause) { | ||
this(null, alternates, null, cause); | ||
} | ||
|
||
public AmbiguousReductionException(final Object criteria, | ||
final Collection<?> alternates, | ||
final Throwable cause) { | ||
this(criteria, alternates, null, cause); | ||
} | ||
|
||
public AmbiguousReductionException(final Collection<?> alternates, | ||
final String message, | ||
final Throwable cause) { | ||
this(null, alternates, message, cause); | ||
} | ||
|
||
public AmbiguousReductionException(final Object criteria, | ||
final Collection<?> alternates, | ||
final String message, | ||
final Throwable cause) { | ||
super(criteria, message, cause); | ||
if (alternates == null || alternates.isEmpty()) { | ||
this.alternates = List.of(); | ||
} else { | ||
this.alternates = List.copyOf(alternates); | ||
} | ||
} | ||
|
||
public final Collection<?> alternates() { | ||
return this.alternates; | ||
} | ||
|
||
} |
73 changes: 0 additions & 73 deletions
73
src/main/java/org/microbean/bean/AmbiguousResolutionException.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.