/******************************************************************************* * Copyright (c) 2006-2007, Cloudsmith Inc. * The code, documentation and other materials contained herein have been * licensed under the Eclipse Public License - v 1.0 by the copyright holder * listed above, as the Initial Contributor under such license. The text of * such license is available at www.eclipse.org. ******************************************************************************/ package org.eclipse.buckminster.jnlp.bootstrap; /** * @author kaja * */ public interface BootstrapConstants { public static final String ERROR_HELP_URL = "http://www.eclipse.org/buckminster/materialization/troubleshooting.php"; //$NON-NLS-1$ public static final String ERROR_CODE_CORRUPTED_FILE_EXCEPTION = "CorruptedFileException"; //$NON-NLS-1$ public static final String ERROR_CODE_JNLP_SAX_EXCEPTION = "JnlpSAXException"; //$NON-NLS-1$ public static final String ERROR_CODE_ARTIFACT_SAX_EXCEPTION = "ArtifactSAXException"; //$NON-NLS-1$ public static final String ERROR_CODE_DIRECTORY_EXCEPTION = "DirectoryException"; //$NON-NLS-1$ public static final String ERROR_CODE_DOWNLOAD_EXCEPTION = "DownloadException"; //$NON-NLS-1$ public static final String ERROR_CODE_FILE_IO_EXCEPTION = "FileIOException"; //$NON-NLS-1$ public static final String ERROR_CODE_JAVA_HOME_NOT_SET_EXCEPTION = "JavaHomeNotSetException"; //$NON-NLS-1$ public static final String ERROR_CODE_JAVA_RUNTIME_EXCEPTION = "JavaRuntimeException"; //$NON-NLS-1$ public static final String ERROR_CODE_LAUNCHER_NOT_FOUND_EXCEPTION = "LauncherNotFoundException"; //$NON-NLS-1$ public static final String ERROR_CODE_LAUNCHER_NOT_STARTED_EXCEPTION = "LauncherNotStartedException"; //$NON-NLS-1$ public static final String ERROR_CODE_MALFORMED_PROPERTY_EXCEPTION = "MalformedPropertyException"; //$NON-NLS-1$ public static final String ERROR_CODE_MATERIALIZATION_EXCEPTION = "MaterializationException"; //$NON-NLS-1$ public static final String ERROR_CODE_MATERIALIZER_EXECUTION_EXCEPTION = "MaterializerExecutionException"; //$NON-NLS-1$ public static final String ERROR_CODE_MATERIALIZER_INSTALL_EXCEPTION = "MaterializerInstallException"; //$NON-NLS-1$ public static final String ERROR_CODE_MISSING_ARGUMENT_EXCEPTION = "MissingArgumentException"; //$NON-NLS-1$ public static final String ERROR_CODE_MISSING_PROPERTY_EXCEPTION = "MissingPropertyException"; //$NON-NLS-1$ public static final String ERROR_CODE_PROPERTY_IO_EXCEPTION = "PropertyIOException"; //$NON-NLS-1$ public static final String ERROR_CODE_REMOTE_IO_EXCEPTION = "RemoteIOException"; //$NON-NLS-1$ public static final String ERROR_CODE_RESOURCE_EXCEPTION = "ResourceException"; //$NON-NLS-1$ public static final String ERROR_CODE_RUNTIME_EXCEPTION = "RuntimeException"; //$NON-NLS-1$ public static final String ERROR_CODE_SITE_ROOT_EXCEPTION = "SiteRootException"; //$NON-NLS-1$ }