1 23 package com.lutris.appserver.server.sql; 24 25 import org.enhydra.dods.exceptions.DodsBaseException; 26 27 34 public class ObjectIdException extends DodsBaseException { 35 36 42 public ObjectIdException(String msg) { 43 super(msg); 44 } 45 46 54 public ObjectIdException(String msg, Throwable cause) { 55 super(msg, cause); 56 } 57 58 65 public ObjectIdException(Throwable cause) { 66 super(cause); 67 } 68 } 69 | Popular Tags |