Package com.cisco.oss.foundation.application.exception

Examples of com.cisco.oss.foundation.application.exception.ApplicationExceptionInterface


    if (throwableInformation != null) {

      Throwable throwable = throwableInformation.getThrowable();

      if (throwable instanceof ApplicationExceptionInterface) {// NOPMD
        final ApplicationExceptionInterface ApplicationExceptionInterface = (ApplicationExceptionInterface) throwable;
        toAppendTo.append("[Error code: ");
        toAppendTo.append(ApplicationExceptionInterface.getErrorCode() == null ? "%NO_ERROR_CODE%" : ApplicationExceptionInterface.getErrorCode().toString());
        toAppendTo.append("] ");

      }
    }
  }
View Full Code Here

TOP

Related Classes of com.cisco.oss.foundation.application.exception.ApplicationExceptionInterface

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.