01: package org.andromda.metafacades.uml14;
02:
03: import org.andromda.metafacades.uml.UMLProfile;
04:
05: /**
06: * MetafacadeLogic implementation for org.andromda.metafacades.uml.FrontEndExceptionHandler.
07: *
08: * @see org.andromda.metafacades.uml.FrontEndExceptionHandler
09: */
10: public class FrontEndExceptionHandlerLogicImpl extends
11: FrontEndExceptionHandlerLogic {
12: public FrontEndExceptionHandlerLogicImpl(Object metaObject,
13: String context) {
14: super (metaObject, context);
15: }
16:
17: /**
18: * @see org.andromda.metafacades.uml.FrontEndExceptionHandler#isFrontEndException()
19: */
20: protected boolean handleIsFrontEndException() {
21: return this
22: .hasStereotype(UMLProfile.STEREOTYPE_FRONT_END_EXCEPTION);
23: }
24: }
|