com.github.tonivade.purefun.Recoverable Maven / Gradle / Ivy
/*
* Copyright (c) 2018-2019, Antonio Gabriel Muñoz Conejo
* Distributed under the terms of the MIT License
*/
package com.github.tonivade.purefun;
public interface Recoverable {
// XXX: https://www.baeldung.com/java-sneaky-throws
@SuppressWarnings("unchecked")
default R sneakyThrow(Throwable t) throws X {
throw (X) t;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy