1 package org.andromda.metafacades.emf.uml22;
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 = 34L;
15
16
17
18
19 public FrontEndExceptionHandlerLogicImpl(
20 final Object metaObject,
21 final String context)
22 {
23 super(metaObject, context);
24 }
25
26
27
28
29 @Override
30 protected boolean handleIsFrontEndException()
31 {
32 return this.hasStereotype(UMLProfile.STEREOTYPE_FRONT_END_EXCEPTION);
33 }
34 }