blob: 1a3666ec24e1178cbd38a92420b9bb631a83d8e9 [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 androidx.test.espresso.flutter.internal.idgenerator;
/** Thrown if an ID cannot be generated. */
public final class IdException extends RuntimeException {
private static final long serialVersionUID = 0L;
public IdException() {
super();
}
public IdException(String message) {
super(message);
}
public IdException(String message, Throwable throwable) {
super(message, throwable);
}
public IdException(Throwable throwable) {
super(throwable);
}
}