package com.tradecloud.authentication;
import com.tradecloud.domain.exception.EnumBusinessException;
/**
* Created by ds on 2015/02/24.
*/
public class UserAuthenticationException extends EnumBusinessException {
public UserAuthenticationException(UserAuthenticationExceptionType type) {
super(type);
}
@Override
public Enum<UserAuthenticationExceptionType> getExceptionType() {
return cast(UserAuthenticationExceptionType.class, exceptionType);
}
}