* <code>false</code> if a default value should be used.
*/
private void registerOther(final boolean throwException) {
this.register(Class.class, throwException ? new ClassConverter() : new ClassConverter(null));
this.register(java.util.Date.class, throwException ? new DateConverter() : new DateConverter(null));
this.register(Calendar.class, throwException ? new CalendarConverter() : new CalendarConverter(null));
this.register(File.class, throwException ? new FileConverter() : new FileConverter(null));
this.register(java.sql.Date.class, throwException ? new SqlDateConverter() : new SqlDateConverter(null));
this.register(java.sql.Time.class, throwException ? new SqlTimeConverter() : new SqlTimeConverter(null));
this.register(Timestamp.class, throwException ? new SqlTimestampConverter() : new SqlTimestampConverter(null));
this.register(URL.class, throwException ? new URLConverter() : new URLConverter(null));