1 package org.andromda.metafacades.uml14;
2
3 import org.andromda.metafacades.uml.UMLProfile;
4
5
6
7
8
9
10
11 public class FrontEndExceptionHandlerLogicImpl
12 extends FrontEndExceptionHandlerLogic
13 {
14 private static final long serialVersionUID = -4149131092786433784L;
15
16
17
18
19
20 public FrontEndExceptionHandlerLogicImpl(
21 Object metaObject,
22 String context)
23 {
24 super(metaObject, context);
25 }
26
27
28
29
30 @Override
31 protected boolean handleIsFrontEndException()
32 {
33 return this.hasStereotype(UMLProfile.STEREOTYPE_FRONT_END_EXCEPTION);
34 }
35 }