Example #1
0
 public void PostRegister(bool registrationDone)
 {
     if (_inner != null)
     {
         try
         {
             _inner.PostRegister(registrationDone);
         }
         catch (Exception ex)
         {
             if (ex is SecurityException)
             {
                 throw;
             }
             throw new MBeanRegistrationException("PostRegister.", ex);
         }
     }
 }