~josejuan-sanchez/+junk/original-jhv-experimental-version

« back to all changes in this revision

Viewing changes to src/jhv/src/org/helioviewer/jhv/internal_plugins/filter/SOHOLUTFilterPlugin/GradientError.java

  • Committer: José Juan Sánchez Hernández
  • Date: 2013-02-05 13:32:08 UTC
  • Revision ID: josejuan.sanchez@gmail.com-20130205133208-dfz1sh1uge5pjkny
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.helioviewer.jhv.internal_plugins.filter.SOHOLUTFilterPlugin;
 
2
 
 
3
/**
 
4
 * Error related to read and evaluate a gimp gradient file
 
5
 * 
 
6
 * @author Helge Dietert
 
7
 * 
 
8
 */
 
9
public class GradientError extends Exception {
 
10
    /**
 
11
     * 
 
12
     */
 
13
    private static final long serialVersionUID = 1L;
 
14
 
 
15
    public GradientError() {
 
16
        super();
 
17
    }
 
18
 
 
19
    public GradientError(String arg0) {
 
20
        super(arg0);
 
21
    }
 
22
}
 
 
b'\\ No newline at end of file'