try {
return kernel.getAttribute(abstractName, attribute);
} catch (NoSuchAttributeException e) {
throw new AttributeNotFoundException(attribute);
} catch (GBeanNotFoundException e) {
throw new InstanceNotFoundException(name.getCanonicalName());
} catch (InternalKernelException e) {
throw new MBeanException(unwrapInternalKernelException(e));
} catch (Exception e) {
throw new MBeanException(e);
}