ErrorException.java 193 Bytes
package com.upc.pbe.upcnews;

public class ErrorException extends Exception
{
	private static final long serialVersionUID = 1L;
	public ErrorException(String message)
	{
		super(message);
	}
}