blob: 94c2d86db9227554aaca9d63d817d7f35c586157 [file] [log] [blame]
// Copyright 2013 The Flutter 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);
}
}