blob: 87cd662fab5a4a9da4895e6b544270425c8b1047 [file] [log] [blame]
/*
Copyright 2001-2002 The Apache Software Foundation
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 org.apache.batik.bridge;
/**
* The error code.
*
* @author <a href="mailto:tkormann@apache.org">Thierry Kormann</a>
* @version $Id$
*/
public interface ErrorConstants {
/**
* The error code when a required attribute is missing.
* <pre>
* {0} = the name of the attribute
* </pre>
*/
public static final String ERR_ATTRIBUTE_MISSING
= "attribute.missing";
/**
* The error code when an attribute has a syntax error.
* <pre>
* {0} = the name of the attribute
* {1} = the wrong value
* </pre>
*/
public static final String ERR_ATTRIBUTE_VALUE_MALFORMED
= "attribute.malformed";
/**
* The error code when a length, which must be positive, is negative.
* <pre>
* {0} = the name of the attribute
* </pre>
*/
public static final String ERR_LENGTH_NEGATIVE
= "length.negative";
/**
* The error code when a CSS length is negative.
* <pre>
* {0} = property
* </pre>
*/
public static final String ERR_CSS_LENGTH_NEGATIVE
= "css.length.negative";
/**
* The error code when a URI specified in a CSS property
* referenced a bad element.
* <pre>
* {0} = the uri
* </pre>
*/
public static final String ERR_CSS_URI_BAD_TARGET
= "css.uri.badTarget";
/**
* The error code when a specified URI references a bad element.
* <pre>
* {0} = the uri
* </pre>
*/
public static final String ERR_URI_BAD_TARGET
= "uri.badTarget";
/**
* The error code when the bridge detected circular dependencies
* while resolving a list of URI.
* <pre>
* {0} = the uri
* </pre>
*/
public static final String ERR_XLINK_HREF_CIRCULAR_DEPENDENCIES
= "xlink.href.circularDependencies";
/**
* The error code when the bridge try to load a URI
* {0} = the uri
*/
public static final String ERR_URI_MALFORMED
= "uri.malformed";
/**
* The error code when the bridge encoutered an I/O error while
* loading a URI.
* <pre>
* {0} = the uri
* </pre>
*/
public static final String ERR_URI_IO
= "uri.io";
/**
* The error code when the bridge encountered a SecurityException
* while loading a URI
* {0} = the uri
*/
public static final String ERR_URI_UNSECURE
= "uri.unsecure";
/**
* The error code when the bridge tries to referenced an invalid
* node inside a document.
* <pre>
* {0} = the uri
* </pre>
*/
public static final String ERR_URI_REFERENCE_A_DOCUMENT
= "uri.referenceDocument";
/**
* The error code when the bridge tries to an image and the image
* format is not supported.
* <pre>
* {0} = the uri
* </pre>
*/
public static final String ERR_URI_IMAGE_INVALID
= "uri.image.invalid";
/**
* The resource that contains the title for the Broken Link message
*/
public static final String MSG_BROKEN_LINK_TITLE
= "broken.link.title";
}