All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wichell.core.exception.DataParseException Maven / Gradle / Ivy

The newest version!
package com.wichell.core.exception;

import com.wichell.core.support.HttpCode;

/**
 * @author Wichell
 * @version 2016年5月20日 下午3:19:19
 */
@SuppressWarnings("serial")
public class DataParseException extends BaseException {

	public DataParseException() {
	}

	public DataParseException(Throwable ex) {
		super(ex);
	}

	public DataParseException(String message) {
		super(message);
	}

	public DataParseException(String message, Throwable ex) {
		super(message, ex);
	}

	protected HttpCode getHttpCode() {
		return HttpCode.INTERNAL_SERVER_ERROR;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy