Package com.errplane.util

Examples of com.errplane.util.ExceptionHelper


  public static boolean reportException(Exception ex, String customData, ExceptionData exData) {
    if (ex == null) {
      return false;
    }

    ExceptionHelper helper = new ExceptionHelper(ex, exData, breadcrumbQueue.toArray(), customData, hostname);

    return report(EXCEPTIONS_TIMESERIES, 1.0, helper.createExceptionContext(), helper.createExceptionDimensions());
  }
View Full Code Here


  public static boolean reportException(Exception ex, String customData, ExceptionData exData) {
    if (ex == null) {
      return false;
    }

    ExceptionHelper helper = new ExceptionHelper(ex, exData, breadcrumbQueue.toArray(), customData, hostname);

    return report(EXCEPTIONS_TIMESERIES, 1.0, helper.createExceptionContext(), helper.createExceptionDimensions());
  }
View Full Code Here

TOP

Related Classes of com.errplane.util.ExceptionHelper

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.