Revision 20098 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/DriverIOException.java

View differences:

DriverIOException.java
41 41
package com.iver.cit.gvsig.fmap.drivers;
42 42

  
43 43
/**
44
 * Excepci?n al acceder a un driver
44
 * <p>Exception produced accessing a driver for input or output operations.</p>
45 45
 */
46 46
public class DriverIOException extends Exception {
47 47
	/**
48
	 * Crea un objeto.
48
	 * <p>Constructs a new driver I/O exception with <code>null</code> as its detail message.
49
	 *  The cause is not initialized, and may subsequently be initialized by a call to <code>initCause</code>.</p>
49 50
	 */
50 51
	public DriverIOException() {
51 52
		super();
52 53
	}
53 54

  
54 55
	/**
55
	 * Crea un objeto con un mensaje como par?metro.
56
	 *
57
	 * @param message String.
56
	 * <p>Constructs a new driver I/0 exception with the specified detail message. The cause is not
57
	 *  initialized, and may subsequently be initialized by a call to <code>initCause</code>.
58
	 * 
59
	 * @param message the detail message. The detail message is saved for later retrieval by the <code>getMessage()</code> method.
58 60
	 */
59 61
	public DriverIOException(String message) {
60 62
		super(message);
61 63
	}
62 64

  
63 65
	/**
64
	 * Crea un objeto.
65
	 *
66
	 * @param message
67
	 * @param cause
66
	 * <p>Constructs a new driver I/O exception with the specified detail message and cause.</p>
67
	 * <p>Note that the detail message associated with <code>cause</code> is not automatically incorporated in this
68
	 *  exception's detail message.</p>
69
	 *  
70
	 * @param message the detail message (which is saved for later retrieval by the <code>getMessage()</code> method).
71
	 * @param cause the cause (which is saved for later retrieval by the <code>getCause()</code> method). (A <code>null</code>
72
	 *  value is permitted, and indicates that the cause is nonexistent or unknown).
68 73
	 */
69 74
	public DriverIOException(String message, Throwable cause) {
70 75
		super(message, cause);
71 76
	}
72 77

  
73 78
	/**
74
	 * Crea un objeto.
75
	 *
76
	 * @param cause
79
	 * <p>Constructs a new driver I/O exception with the specified cause and a detail message of <code>(cause==null ?
80
	 *  null : cause.toString())</code> (which typically contains the class and detail message of cause).
81
	 *  
82
	 * @param cause the cause (which is saved for later retrieval by the <code>getCause()</code> method). (A <code>null</code>
83
	 *  value is permitted, and indicates that the cause is nonexistent or unknown).
77 84
	 */
78 85
	public DriverIOException(Throwable cause) {
79 86
		super(cause);

Also available in: Unified diff