org.aopalliance.instrument.UndoNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
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);
}
}