1 18 package org.apache.beehive.netui.databinding.datagrid.api.exceptions; 19 20 24 public class CellDecoratorException 25 extends RuntimeException { 26 27 30 public CellDecoratorException() { 31 super(); 32 } 33 34 39 public CellDecoratorException(String message) { 40 super(message); 41 } 42 43 48 public CellDecoratorException(Throwable cause) { 49 super(cause); 50 } 51 52 58 public CellDecoratorException(String message, Throwable cause) { 59 super(message, cause); 60 } 61 } 62 | Popular Tags |