View Javadoc
1   package net.avcompris.commons3.core.tests;
2   
3   import javax.annotation.Nullable;
4   
5   import net.avcompris.commons3.api.exception.ServiceException;
6   
7   public class MalformedDataBeanException extends ServiceException {
8   
9   	private static final long serialVersionUID = -2963961609449468220L;
10  
11  	public MalformedDataBeanException(@Nullable final String message) {
12  
13  		super(400, message);
14  	}
15  }