| Home >> All >> com >> neuron >> [ jaffer Javadoc ] |
Source code: com/neuron/jaffer/AFP_Error.java
1 /* 2 * Copyright (c) 2003 Stewart Allen <stewart@neuron.com>. All rights reserved. 3 * This program is free software. See the 'License' file for details. 4 */ 5 6 package com.neuron.jaffer; 7 8 import java.io.*; 9 import java.net.*; 10 import java.util.*; 11 12 class AFP_Error extends IOException 13 { 14 private int error; 15 16 AFP_Error(int error) 17 { 18 this.error = error; 19 } 20 21 public int getError() 22 { 23 return error; 24 } 25 } 26