org.springframework.beans.TypeMismatchException Object getValue(), , :
...
} catch(Exception exception) {
if(exception instanceof TypeMismatchException) {
Object value = ((TypeMismatchException) exp).getValue;
...
}
}
...
} catch(TypeMismatchException exception) {
Object value = exp.getValue;
...
}
org.springframework.beans.TypeMismatchException
package org.springframework.beans;
public class TypeMismatchException extends PropertyAccessException {
...
@Override
public Object getValue() {
return this.value;
}
...
}