blob: debcd7ee75298cfb0f3d56134d2a33ad2309e988 [file] [log] [blame]
// Copyright 2019 The Chromium 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.flutter.plugins.androidalarmmanager;
class PluginRegistrantException extends RuntimeException {
public PluginRegistrantException() {
super(
"PluginRegistrantCallback is not set. Did you forget to call "
+ "AlarmService.setPluginRegistrant? See the README for instructions.");
}
}