blob: fdf382f6277f43e822b3566ddf2c88a3a438d02a [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.baku.toolkit;
import java8.lang.FunctionalInterface;
@FunctionalInterface
public interface ErrorReporter {
void onError(int summaryStringId, Throwable t);
}