com.machinezoo.noexception.ExceptionSilencer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of noexception Show documentation
Show all versions of noexception Show documentation
Functional programming for exception handlers.
// Part of NoException: https://noexception.machinezoo.com
package com.machinezoo.noexception;
final class ExceptionSilencer extends ExceptionHandler {
@Override public boolean handle(Throwable exception) {
return true;
}
}