1 17 18 package org.apache.geronimo.kernel.config; 19 20 import org.apache.geronimo.kernel.repository.Artifact; 21 22 27 public class NoSuchConfigException extends Exception { 28 private final Artifact configId; 29 30 public NoSuchConfigException(Artifact configId) { 31 super(configId.toString()); 32 this.configId = configId; 33 } 34 35 public Artifact getConfigId() { 36 return configId; 37 } 38 } 39 | Popular Tags |