Projekt

Obecné

Profil

Stáhnout (359 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
package jdeserialize;
2
import java.io.*;
3

    
4
/**
5
 * Exception that denotes that data in the stream did not conform to the constraints
6
 * imposed by the specification.
7
 */
8
public class ValidityException extends IOException {
9
    public static final long serialVersionUID = 2277356908919241L;
10
    public ValidityException(String msg) {
11
        super(msg);
12
    }
13
}
14

    
(4-4/20)