Project

General

Profile

1
package gr.uoa.di.web.utils.userprofile;
2

    
3
@SuppressWarnings("serial")
4
public class UserProfileManagerException extends Exception{
5

    
6
	public UserProfileManagerException() {
7
		super();
8
		// TODO Auto-generated constructor stub
9
	}
10

    
11
	public UserProfileManagerException(String message, Throwable cause) {
12
		super(message, cause);
13
		// TODO Auto-generated constructor stub
14
	}
15

    
16
	public UserProfileManagerException(String message) {
17
		super(message);
18
		// TODO Auto-generated constructor stub
19
	}
20

    
21
	public UserProfileManagerException(Throwable cause) {
22
		super(cause);
23
		// TODO Auto-generated constructor stub
24
	}
25

    
26
	
27

    
28
}
(7-7/9)