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

net.java.trueupdate.installer.cargo.CargoContextException Maven / Gradle / Ivy

Go to download

Provides an update installer for applications running in a container which is supported by the generic Cargo API.

There is a newer version: 0.8.1
Show newest version
/*
 * Copyright (C) 2013 Schlichtherle IT Services & Stimulus Software.
 * All rights reserved. Use is subject to license terms.
 */
package net.java.trueupdate.installer.cargo;

import java.net.URI;

/**
 * Indicates an invalid configuration URI for a {@link CargoContext}.
 *
 * @author Christian Schlichtherle
 */
public class CargoContextException extends CargoException {

    private static final long serialVersionUID = 0L;

    CargoContextException(
            final URI configuration,
            final String componentName,
            final Throwable cause) {
        super(String.format(
                "The configuration URI %s does not define a valid %s.",
                configuration, componentName), cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy