~ubuntu-branches/ubuntu/vivid/apgdiff/vivid

« back to all changes in this revision

Viewing changes to src/main/java/cz/startnet/utils/pgdiff/loader/FileException.java

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2010-10-02 19:35:17 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101002193517-9wesve8sksxcktkc
Tags: 2.2-1
* New upstream version.
* Update homepage location.
* Finally enable test suite, yay!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright 2006 StartNet s.r.o.
 
3
 *
 
4
 * Distributed under MIT license
 
5
 */
1
6
package cz.startnet.utils.pgdiff.loader;
2
7
 
3
8
/**
11
16
     * Predefined message that can be used when cannot read file.
12
17
     */
13
18
    public static final String CANNOT_READ_FILE = "Cannot read file";
 
19
    /**
 
20
     * Serial version uid.
 
21
     */
 
22
    private static final long serialVersionUID = 1L;
14
23
 
15
24
    /**
16
25
     * Creates a new instance of <code>FileException</code> without
17
26
     * detail message.
18
27
     */
19
28
    public FileException() {
20
 
        super();
21
29
    }
22
30
 
23
31
    /**