All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.objectweb.asm.test.ClassFormatException Maven / Gradle / Ivy

Go to download

Utilities for testing ASM, a very small and fast Java bytecode manipulation framework

There is a newer version: 9.7.1
Show newest version
package org.objectweb.asm.test;

/**
 * A {@link RuntimeException} thrown by {@link ClassFile} when a class file is malformed.
 *
 * @author Eric Bruneton
 */
public class ClassFormatException extends RuntimeException {

  private static final long serialVersionUID = -6426141818319882225L;

  /**
   * Constructs a new ClassFormatException instance.
   *
   * @param message the detailed message of this exception.
   */
  public ClassFormatException(final String message) {
    super(message);
  }

  /**
   * Constructs a new ClassFormatException instance.
   *
   * @param message the detailed message of this exception.
   * @param cause the cause of this exception.
   */
  public ClassFormatException(final String message, final Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy