Projekt

Obecné

Profil

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

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

    
(4-4/20)