Skip to content

Commit 3cae11b

Browse files
committed
improve error message
1 parent 5c3820f commit 3cae11b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

oracles/equivalence-oracles/src/main/java/de/learnlib/oracle/equivalence/sba/SimulatorEQOracle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public SimulatorEQOracle(SBA<?, I> sba) {
3636
@Override
3737
public @Nullable DefaultQuery<I, Boolean> findCounterExample(SBA<?, I> hypothesis, Collection<? extends I> inputs) {
3838
if (!(inputs instanceof ProceduralInputAlphabet)) {
39-
throw new IllegalArgumentException("Inputs are not an SPA alphabet");
39+
throw new IllegalArgumentException("Inputs are not a procedural alphabet");
4040
}
4141

4242
@SuppressWarnings("unchecked")

oracles/equivalence-oracles/src/main/java/de/learnlib/oracle/equivalence/spmm/SimulatorEQOracle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public SimulatorEQOracle(SPMM<?, I, ?, O> spmm) {
3737
public @Nullable DefaultQuery<I, Word<O>> findCounterExample(SPMM<?, I, ?, O> hypothesis,
3838
Collection<? extends I> inputs) {
3939
if (!(inputs instanceof ProceduralInputAlphabet)) {
40-
throw new IllegalArgumentException("Inputs are not an SPA alphabet");
40+
throw new IllegalArgumentException("Inputs are not a procedural alphabet");
4141
}
4242

4343
@SuppressWarnings("unchecked")

0 commit comments

Comments
 (0)