net.java.trueupdate.installer.cargo.CargoContextException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trueupdate-installer-cargo Show documentation
Show all versions of trueupdate-installer-cargo Show documentation
Provides an update installer for applications running in a container
which is supported by the generic Cargo API.
/*
* 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);
}
}