ef07e95a7b7e96160e5ef1f956c44d451df750f8
[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 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
11  * 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 storing or
24          * loading templates.
25          */
26         public static final int TEMPLATE_IO_EXCEPTION = 2;
27
28 }