001package org.andromda.metafacades.uml14; 002 003import org.andromda.metafacades.uml.UMLProfile; 004 005/** 006 * MetafacadeLogic implementation for org.andromda.metafacades.uml.FrontEndExceptionHandler. 007 * 008 * @see org.andromda.metafacades.uml.FrontEndExceptionHandler 009 * @author Bob Fields 010 */ 011public class FrontEndExceptionHandlerLogicImpl 012 extends FrontEndExceptionHandlerLogic 013{ 014 private static final long serialVersionUID = -4149131092786433784L; 015 016 /** 017 * @param metaObject 018 * @param context 019 */ 020 public FrontEndExceptionHandlerLogicImpl( 021 Object metaObject, 022 String context) 023 { 024 super(metaObject, context); 025 } 026 027 /** 028 * @see org.andromda.metafacades.uml.FrontEndExceptionHandler#isFrontEndException() 029 */ 030 @Override 031 protected boolean handleIsFrontEndException() 032 { 033 return this.hasStereotype(UMLProfile.STEREOTYPE_FRONT_END_EXCEPTION); 034 } 035}