All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.airlift.bootstrap.LifeCycleStartException Maven / Gradle / Ivy

There is a newer version: 284
Show newest version
package io.airlift.bootstrap;

public class LifeCycleStartException
        extends RuntimeException
{
    public LifeCycleStartException(String message)
    {
        super(message);
    }

    public LifeCycleStartException(String message, Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy