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

« back to all changes in this revision

Viewing changes to src/main/java/cz/startnet/utils/pgdiff/parsers/ParserException.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.parsers;
2
7
 
3
8
/**
8
13
public class ParserException extends RuntimeException {
9
14
 
10
15
    /**
11
 
     * Predefined message string that can be used as default exception
12
 
     * message with provided parsed line.
 
16
     * Serial version uid.
13
17
     */
14
 
    public static final String CANNOT_PARSE_COMMAND = "Cannot parse command: ";
 
18
    private static final long serialVersionUID = 1L;
15
19
 
16
20
    /**
17
21
     * Creates a new instance of <code>ParserException</code> without
18
22
     * detail message.
19
23
     */
20
24
    public ParserException() {
21
 
        super();
22
25
    }
23
26
 
24
27
    /**