blob: f2a055f46d06696f37e68e60f28802cd00a7dcad [file] [log] [blame]
package org.apache.karaf.webconsole.karaf.internal.model;
import java.net.URI;
public class RepositoryNotFoundException extends RuntimeException {
public RepositoryNotFoundException(URI uri) {
super(uri.toString());
}
}