public final class

StartupException

extends java.lang.RuntimeException

 java.lang.Object

↳java.lang.Throwable

↳java.lang.Exception

↳java.lang.RuntimeException

↳androidx.startup.StartupException

Gradle dependencies

compile group: 'androidx.startup', name: 'startup-runtime', version: '1.2.0-rc01'

  • groupId: androidx.startup
  • artifactId: startup-runtime
  • version: 1.2.0-rc01

Artifact androidx.startup:startup-runtime:1.2.0-rc01 it located at Google repository (https://maven.google.com/)

Overview

The Runtime Exception thrown by the android.startup library.

Summary

Constructors
publicStartupException(java.lang.String message)

publicStartupException(java.lang.String message, java.lang.Throwable throwable)

publicStartupException(java.lang.Throwable throwable)

Methods
from java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructors

public StartupException(java.lang.String message)

public StartupException(java.lang.Throwable throwable)

public StartupException(java.lang.String message, java.lang.Throwable throwable)

Source

/*
 * Copyright 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.startup;

import androidx.annotation.NonNull;
import androidx.annotation.RestrictTo;

/**
 * The Runtime Exception thrown by the android.startup library.
 *
 */
@RestrictTo(RestrictTo.Scope.LIBRARY)
@SuppressWarnings("WeakerAccess")
public final class StartupException extends RuntimeException {
    public StartupException(@NonNull String message) {
        super(message);
    }

    public StartupException(@NonNull Throwable throwable) {
        super(throwable);
    }

    public StartupException(@NonNull String message, @NonNull Throwable throwable) {
        super(message, throwable);
    }
}