Blame view

src/com/upc/pbe/upcnews/ErrorException.java 244 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
package com.upc.pbe.upcnews;
Imanol-Mikel Barba Sabariego authored
3
4
5
//Excepcio d'error critic, finalitza l'aplicacio
public class ErrorException extends Exception {
Imanol-Mikel Barba Sabariego authored
6
	private static final long serialVersionUID = 1L;
Imanol-Mikel Barba Sabariego authored
7
8

	public ErrorException(String message){
Imanol-Mikel Barba Sabariego authored
9
10
11
		super(message);
	}
}