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

org.aopalliance.instrument.InstrumentationError Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version

package org.aopalliance.instrument;

/**
 * The error that is raised when an error occurs during an instrumentation.
 *
 * @see Instrumentor */

public class InstrumentationError extends Error {
   
   /**
    * Sets a generic error message for an instrumentation error. */
   public InstrumentationError(Instrumentation instrumentation,
                               Throwable cause) {
      super("Error while instrumenting " + instrumentation,cause);
   }
   
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy