com.glancebar.aliyun.sts.exception.AliyunConfigNotSetException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-autoconfigure Show documentation
Show all versions of spring-boot-autoconfigure Show documentation
Support some aliyun utils and integrate with Spring.
The newest version!
package com.glancebar.aliyun.sts.exception
import org.springframework.beans.factory.BeanCreationException
/**
* Customized exception to store details info.
* @author yishen.cai
*/
class AliyunConfigNotSetException(
// spring active profile setting
val activeProfile: String,
// javax.violations messages
val violations: String,
) : BeanCreationException(violations) {
}