~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to versioncontrol/mercurial/src/org/netbeans/modules/mercurial/HgException.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * HgException.java
 
3
 *
 
4
 * Created on March 15, 2007, 6:39 PM
 
5
 *
 
6
 * To change this template, choose Tools | Template Manager
 
7
 * and open the template in the editor.
 
8
 */
 
9
 
 
10
package org.netbeans.modules.mercurial;
 
11
 
 
12
/**
 
13
 *
 
14
 * @author jr140578
 
15
 */
 
16
public class HgException extends Exception {
 
17
    
 
18
    /** Creates a new instance of HgException */
 
19
    public HgException(String msg) {
 
20
        super(msg);
 
21
    }
 
22
    
 
23
}