package Exercice3;

public class AdherentException extends Exception {

	private static final long serialVersionUID = 8175947678665798990L;
	
	public static final int PAS_SUSPENDU = 0;
	public static final int EMPRUNT_NON_AUTORISE = 1;
	
	private int errorCode;
	
	public AdherentException(int errorCode)
	{
		this.errorCode = errorCode;
	}

}
