using System; namespace Exceptions { public class MyUserExceptionImpl: Exceptions.MyUserException { public MyUserExceptionImpl() { } public MyUserExceptionImpl( int a_iValue) { this.iId = a_iValue; } } }