[unrelated] Fix warning
diff --git a/plugins/org.eclipse.qvtd.runtime/src/org/eclipse/qvtd/runtime/evaluation/InvocationFailedException.java b/plugins/org.eclipse.qvtd.runtime/src/org/eclipse/qvtd/runtime/evaluation/InvocationFailedException.java
index fbed6e4..4e3d774 100644
--- a/plugins/org.eclipse.qvtd.runtime/src/org/eclipse/qvtd/runtime/evaluation/InvocationFailedException.java
+++ b/plugins/org.eclipse.qvtd.runtime/src/org/eclipse/qvtd/runtime/evaluation/InvocationFailedException.java
@@ -31,7 +31,7 @@
 	}
 
 	@Override
-	public String toString() {
-		return slotState.toString();
+	public @NonNull String toString() {
+		return String.valueOf(slotState);
 	}
 }
\ No newline at end of file