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 Core exception is
9 * thrown, it contain a status object describing the cause of the exception. The
10 * status objects originating from the PHP UI plug-in use the codes defined in
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 storing or
26 public static final int TEMPLATE_IO_EXCEPTION = 2;