Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package org.codehaus.jackson.map.deser.std;
import java.io.IOException;
import org.codehaus.jackson.*;
import org.codehaus.jackson.map.*;
import org.codehaus.jackson.map.deser.BeanDeserializer;
import org.codehaus.jackson.map.deser.SettableBeanProperty;
/**
* Deserializer that builds on basic {@link BeanDeserializer} but
* override some aspects like instance construction.
*
* Note that this deserializer was significantly changed in Jackson 1.7
* (due to massive changes in {@link BeanDeserializer}).
*
* @since 1.9 (renamed from 'org.codehaus.jackson.map.deser.ThrowableDeserializer')
*/
public class ThrowableDeserializer
extends BeanDeserializer
{
protected final static String PROP_NAME_MESSAGE = "message";
/*
/************************************************************
/* Construction
/************************************************************
*/
public ThrowableDeserializer(BeanDeserializer baseDeserializer)
{
super(baseDeserializer);
}
/**
* Alternative constructor used when creating "unwrapping" deserializers
*
* @since 1.9
*/
protected ThrowableDeserializer(BeanDeserializer src, boolean ignoreAllUnknown)
{
super(src, ignoreAllUnknown);
}
@Override
public JsonDeserializer