From 029a0d4debcf38998c6df2da7c7617f0d710634f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vilius=20=C5=A0umskas?= Date: Wed, 16 Apr 2025 14:04:52 +0300 Subject: [PATCH] ARTEMIS-5434 Use full exception name in exceptions --- .../org/apache/activemq/artemis/api/core/ActiveMQException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQException.java b/artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQException.java index d96a141d11e..a5b7e1abaf3 100644 --- a/artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQException.java +++ b/artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQException.java @@ -75,6 +75,6 @@ public ActiveMQExceptionType getType() { @Override public String toString() { - return this.getClass().getSimpleName() + "[errorType=" + type + " message=" + getMessage() + "]"; + return this.getClass().getName() + ": [errorType=" + type + " message=" + getMessage() + "]"; } }