Uses of Class
com.iohao.net.framework.core.exception.MessageException
Packages that use MessageException
Package
Description
Provides framework-level exception handling, assertion integration, and unified error processing
abstractions for business request execution.
Provides the action invocation flow model, context propagation, and execution pipeline contracts
used to process business requests end to end.
Provides internal flow-plugin implementations that participate in the framework execution
pipeline and support extensible request-processing behavior.
-
Uses of MessageException in com.iohao.net.framework.core.exception
Methods in com.iohao.net.framework.core.exception that throw MessageExceptionModifier and TypeMethodDescriptiondefault voidErrorInformation.assertFalse(boolean v1) Asserts that the value must be false, throws an exception if the assertion is truedefault voidErrorInformation.assertFalse(boolean v1, String msg) Asserts that the value must be false, throws an exception if the assertion is truedefault voidErrorInformation.assertNonNull(Object value) Asserted value cannot be null; throws an exception if it is nulldefault voidErrorInformation.assertNonNull(Object value, String msg) Asserted value cannot be null; throws an exception if it is nulldefault voidErrorInformation.assertNullThrows(Object value) Throws an exception if the asserted value is nulldefault voidErrorInformation.assertNullThrows(Object value, String msg) Asserts that the assertion value is null, otherwise throws an exceptiondefault voidErrorInformation.assertTrue(boolean v1) Asserts that the value must be true, throws an exception if the assertion is falsedefault voidErrorInformation.assertTrue(boolean v1, String msg) Asserts that the value must be true, throws an exception if the assertion is falsedefault voidErrorInformation.assertTrueThrows(boolean v1) Throws an exception if the asserted value is truedefault voidErrorInformation.assertTrueThrows(boolean v1, String msg) Throws an exception if the asserted value is true -
Uses of MessageException in com.iohao.net.framework.core.flow
Methods in com.iohao.net.framework.core.flow that return MessageExceptionModifier and TypeMethodDescriptionActionMethodExceptionProcess.processException(Throwable e) Exception handling -
Uses of MessageException in com.iohao.net.framework.core.flow.internal
Methods in com.iohao.net.framework.core.flow.internal that return MessageExceptionModifier and TypeMethodDescriptionDefaultActionMethodExceptionProcess.processException(Throwable e) Process the given exception and convert it to aMessageException.