Improved completion processor
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / PHPStatusConstants.java
1 /*
2  * (c) Copyright IBM Corp. 2000, 2001.
3  * All Rights Reserved.
4  */
5 package net.sourceforge.phpdt.internal.ui;
6
7 /**
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.
12   */
13 public class PHPStatusConstants {
14         
15         // Prevent instantiation
16         private PHPStatusConstants() {
17         }
18
19         /** Status code describing an internal error */
20         public static final int INTERNAL_ERROR= 1;
21         
22         /**
23          * Status constant indicating that an exception occured on
24          * storing or loading templates.
25          */
26         public static final int TEMPLATE_IO_EXCEPTION = 2;
27         
28 }