1 12 13 package com.openedit.users; 14 15 21 public class UnsupportedPropertyTypeException extends UserManagerException 22 { 23 26 public UnsupportedPropertyTypeException() 27 { 28 super(); 29 } 30 31 36 public UnsupportedPropertyTypeException(String message) 37 { 38 super(message); 39 } 40 41 47 public UnsupportedPropertyTypeException(String message, Throwable cause) 48 { 49 super(message, cause); 50 } 51 52 57 public UnsupportedPropertyTypeException(Throwable cause) 58 { 59 super(cause); 60 } 61 } 62 | Popular Tags |