/* * #! * Ontopia Navigator * #- * Copyright (C) 2001 - 2013 The Ontopia Project * #- * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * !# */ package net.ontopia.topicmaps.nav2.core; /** * INTERNAL: This exception is thrown when the navigator framework is * passed a topic map object ID that does not belong to any actual * topic map object. It is thrown by <logic:context> and * <tm:lookup parameter="..."> when they are passed object IDs that * are invalid. * * @since 2.0 */ public class NonexistentObjectException extends RuntimeException { private String objectid; private String topicmapid; /** * INTERNAL: Constructor with empty error message. * @param objectid The object ID that did not resolve to an object. * @param topicmapid The ID of the topic map this was attempted on. */ public NonexistentObjectException(String objectid, String topicmapid) { super("Topic object with ID '" + objectid + "' not found in topicmap '" + topicmapid + "', maybe wrong object ID."); this.objectid = objectid; this.topicmapid = topicmapid; } /** * INTERNAL: Returns the object id that caused the exception. */ public String getObjectId() { return objectid; } /** * INTERNAL: Returns the ID of the topic map where the object ID did * not resolve. */ public String getTopicMapId() { return topicmapid; } }