Subversion Repositories svnkaklik

Rev

Details | Last modification | View Log

Rev Author Line No. Line
157 kaklik 1
package avr.swing;
2
 
3
public class InvalidColorMapException extends Exception {
4
 
5
   private int[] indicies;
6
   private int red;
7
   private int green;
8
   private int blue;
9
 
10
   public InvalidColorMapException(String message, int[] indicies, int red, int green, int blue) {
11
      super(message);
12
      this.indicies = indicies;
13
      this.red = red;
14
      this.green = green;
15
      this.blue = blue;
16
   }
17
 
18
   public int[] getIndicies() {
19
      return indicies;
20
   }
21
 
22
   public int getRed() {
23
      return red;
24
   }
25
 
26
   public int getGreen() {
27
      return green;
28
   }
29
 
30
   public int getBlue() {
31
      return blue;
32
   }
33
 
34
}