Package org.hyperic.hq.product

Examples of org.hyperic.hq.product.MetricNotFoundException


    } finally {
      // it's null-proof
      MxUtil.close(jmxConnector);
    }

    throw new MetricNotFoundException(MSG_ERR_NOTFOUND);
  }
View Full Code Here


      return TabularData.class.cast(connection.getAttribute(objName,
          attributeName));
    } catch (IOException e) {
      throw new MetricUnreachableException("Unable to get attribute value for " + objName + ":" + attributeName, e);
    } catch (Exception e) {
      throw new MetricNotFoundException("Unable to get attribute value for " + objName + ":" + attributeName, e);
    }
  }
View Full Code Here

      return TabularData.class.cast(connection.invoke(objName,
          operationName, null, null));
    } catch (IOException e) {
      throw new MetricUnreachableException("Unable to get operation return value for " + objName + "->" + operationName, e);
    } catch (Exception e) {
      throw new MetricNotFoundException("Unable to get operation return value for " + objName + "->" + operationName, e);
    }
  }
View Full Code Here

TOP

Related Classes of org.hyperic.hq.product.MetricNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.