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 SummaryModifier and TypeMethodDescriptionThe original classname of the exception type.booleanWhether or not the original type overrode Throwable.toString()
- 
Method Details- 
getOriginalClassnameString getOriginalClassname()The original classname of the exception type.
- 
originalTypeOverridesToStringboolean originalTypeOverridesToString()Whether or not the original type overrode Throwable.toString()
 
-