2 * (c) Copyright IBM Corp. 2000, 2001.
5 package net.sourceforge.phpdt.internal.ui;
8 * Defines status codes relevant to the PHP UI plug-in. When a
9 * Core exception is thrown, it contain a status object describing
10 * the cause of the exception. The status objects originating from the
11 * PHP UI plug-in use the codes defined in this interface.
13 public class PHPStatusConstants {
15 // Prevent instantiation
16 private PHPStatusConstants() {
19 /** Status code describing an internal error */
20 public static final int INTERNAL_ERROR= 1;
23 * Status constant indicating that an exception occured on
24 * storing or loading templates.
26 public static final int TEMPLATE_IO_EXCEPTION = 2;