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

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

There is a newer version: 4.1.2
Show newest version

package org.aopalliance.instrument;

/**
 * The exception that is raised when the client program tries to undo
 * an instrumentation and when current implementation does not support
 * it.
 *
 * 

Undoing is implemented by the {@link * Instrumentor#undo(Instrumentation)} method. * * @see Instrumentor */ public class UndoNotSupportedException extends Exception { /** * Sets a generic exception message for an instrumentation. */ public UndoNotSupportedException(Instrumentation instrumentation) { super("Undo not supported for instrumentation: " + instrumentation); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy