Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
querz-nbt
/
c16f5192790d9a3c03ca6f1e12430a2b2a454a70
/
.
/
src
/
main
/
java
/
net
/
querz
/
io
/
ExceptionTriConsumer.java
blob: d49ccc90826088c42cb62a63b3dfa839dc99749e [
file
] [
log
] [
blame
] [
raw
]
package
net
.
querz
.
io
;
@FunctionalInterface
public
interface
ExceptionTriConsumer
<
T
,
U
,
V
,
E
extends
Exception
>
{
void
accept
(
T t
,
U u
,
V v
)
throws
E
;
}