1) Added a 'try catch block' to sendPacket to avoid exceptions when PHP script is...
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.core / src / net / sourceforge / phpdt / internal / debug / core / watch / PHPEvalException.java
1 package net.sourceforge.phpdt.internal.debug.core.watch;
2
3 public class PHPEvalException extends Exception {
4
5        public PHPEvalException(String s)
6        {
7                super(s);
8        }
9
10 }