Skip to content

Commit

Permalink
Issue #106: fix 'ConciergeServiceGlobalErrorRegistryTest'
Browse files Browse the repository at this point in the history
by adding missing and newly introduced 'IllegalAdaptableException'

Signed-off-by: Joel Bartelheimer <joel.bartelheimer@bosch.io>
  • Loading branch information
jbartelh committed Dec 14, 2021
1 parent b0af7b0 commit 91f7ca2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import org.eclipse.ditto.policies.model.signals.commands.exceptions.PolicyConflictException;
import org.eclipse.ditto.protocol.UnknownCommandException;
import org.eclipse.ditto.protocol.adapter.UnknownTopicPathException;
import org.eclipse.ditto.protocol.mappingstrategies.IllegalAdaptableException;
import org.eclipse.ditto.things.model.ThingIdInvalidException;
import org.eclipse.ditto.things.model.signals.commands.exceptions.AttributePointerInvalidException;
import org.eclipse.ditto.thingsearch.model.signals.commands.exceptions.InvalidNamespacesException;
Expand Down Expand Up @@ -64,7 +65,8 @@ public ConciergeServiceGlobalErrorRegistryTest() {
AcknowledgementCorrelationIdMissingException.class,
PathUnknownException.class,
UnknownTopicPathException.class,
AskException.class);
AskException.class,
IllegalAdaptableException.class);
}

}

0 comments on commit 91f7ca2

Please sign in to comment.