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

org.apache.batik.ext.awt.image.spi.ErrorConstants Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You 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.ext.awt.image.spi;

/**
 * The built in error codes.
 *
 * @author Thomas DeWeese
 * @version $Id: ErrorConstants.java 1733416 2016-03-03 07:07:13Z gadams $
 */
public interface ErrorConstants {

    /**
     * The error messages bundle class name.
     */
    String RESOURCES =
        "org.apache.batik.ext.awt.image.spi.resources.Messages";


    /**
     * The error code when a stream is unreadable (corrupt or unsupported).
     */
    String ERR_STREAM_UNREADABLE
        = "stream.unreadable";

    /**
     * The error code when a url of a particular format is unreadable
     * (corrupt).
     * 
     * {0} = the format that couldn't be read.
     * 
*/ String ERR_STREAM_FORMAT_UNREADABLE = "stream.format.unreadable"; /** * The error code when the data in the url is uninterpretable by this * software (meaning it's corrupt or an unsupported format of some sort). *
     * {0} = the ParsedURL that couldn't be read.
     * 
*/ String ERR_URL_UNINTERPRETABLE = "url.uninterpretable"; /** * The error code when a url is unreachable (ussually bad URL, * or server is down). *
     * {0} = the ParsedURL that couldn't be read.
     * 
*/ String ERR_URL_UNREACHABLE = "url.unreachable"; /** * The error code when a url of a particular format is unreadable * (corrupt). *
     * {0} = the format that couldn't be read.
     * {1} = the ParsedURL for file.
     * 
*/ String ERR_URL_FORMAT_UNREADABLE = "url.format.unreadable"; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy