package com.fitbank.exception;




public class IOExceptionManager extends ExceptionManager{

		public String getUserMessage(Throwable pException) {
			
                return "Error de IO";
			}
			
		

		public String getCode(Throwable pException) {
		
			return "IO-0000";
		}


}
