blob: e3c3970400292f93b547ee5572b60303ed3a3cf4 [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.android.error;
import android.support.annotation.StringRes;
import java8.lang.FunctionalInterface;
@FunctionalInterface
public interface ErrorReporter {
void onError(@StringRes int summaryStringId, Throwable t);
}