~elambert/gearmanij/gearman_java_library

« back to all changes in this revision

Viewing changes to test/org/gearman/util/NotImplementedException.java

  • Committer: Eric Lambert
  • Date: 2009-07-10 03:56:00 UTC
  • Revision ID: eric.d.lambert@gmail.com-20090710035600-fy5ghxevm51b5lvm
started refactoring unused classes and tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2009 by Eric Herman <eric@freesa.org>
3
 
 * Use and distribution licensed under the 
4
 
 * GNU Lesser General Public License (LGPL) version 2.1.
5
 
 * See the COPYING file in the parent directory for full text.
6
 
 */
7
 
package org.gearman.util;
8
 
 
9
 
public class NotImplementedException extends RuntimeException {
10
 
    private static final long serialVersionUID = 1L;
11
 
 
12
 
    public NotImplementedException() {
13
 
        super();
14
 
    }
15
 
 
16
 
    public NotImplementedException(String msg) {
17
 
        super(msg);
18
 
    }
19
 
 
20
 
}