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

io.fabric8.maven.docker.model.PortBindingException Maven / Gradle / Ivy

There is a newer version: 0.45.0
Show newest version
package io.fabric8.maven.docker.model;

import com.google.gson.JsonObject;

public class PortBindingException extends RuntimeException {
    public PortBindingException(String port, JsonObject portDetails) {
        super(String.format("Failed to create binding for port '%s'. Container ports: %s", port, portDetails));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy