Package edu.berkeley.cs.jqf.fuzz.util
Interface ThrowingRunnable
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ThrowingRunnable
A version ofRunnable
that throws arbitrary, possibly checked, exceptions. Useful for wrapping checked exceptions with unchecked exceptions, such as during guided fuzzing (see:GuidanceException.wrap(ThrowingRunnable)
)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
run()
-