InfoException.java 191 Bytes
package com.upc.pbe.upcnews;

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