Interface IExceptionFacade
- All Known Implementing Classes:
GenericTransferrableException
public interface IExceptionFacade
Indicates an exception that is really a transparent facade over another interface. Used to let exceptions travel
across RPC boundaries and appear the same on the other end, even when the actuall exception class on the originating
end doesn't exist on the far end.
-
Method Summary
Modifier and TypeMethodDescriptionThe original classname of the exception type.boolean
Whether or not the original type overrode Throwable.toString()
-
Method Details
-
getOriginalClassname
String getOriginalClassname()The original classname of the exception type. -
originalTypeOverridesToString
boolean originalTypeOverridesToString()Whether or not the original type overrode Throwable.toString()
-