Package com.alexgilleran.icesoap.exception

Examples of com.alexgilleran.icesoap.exception.ClassDefException


   *
   * @param cause
   *            The root exception.
   */
  private void throwInitializationException(Throwable cause) {
    throw new ClassDefException(
        "An exception was encountered while trying to instantiate a new instance of "
            + targetClass.getName()
            + ". This is probably because it doesn't implement a zero-arg constructor. To fix this, either change it so it has a zero-arg constructor, extend "
            + getClass().getSimpleName()
            + " and override the initializeParsedObject method, or make sure to always pass an existing object to the parser.",
View Full Code Here

TOP

Related Classes of com.alexgilleran.icesoap.exception.ClassDefException

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.