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

org.springframework.biz.web.servlet.mvc.AbstractBaseController Maven / Gradle / Ivy

There is a newer version: 1.0.7.RELEASE
Show newest version
package org.springframework.biz.web.servlet.mvc;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class AbstractBaseController {

	protected static final transient Logger LOG = LoggerFactory.getLogger(AbstractBaseController.class);
	
	protected void logException(Exception ex) {
		if (LOG.isErrorEnabled()){
			LOG.error(ex.getMessage(), ex);
		}
	}
	
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy