You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
450 B
15 lines
450 B
package com.fr.env.detect.impl; |
|
|
|
import com.fr.env.detect.base.CatchExceptionDetector; |
|
import com.fr.env.detect.bean.DetectorType; |
|
import com.fr.env.detect.impl.converter.FineDbPermissionConverter; |
|
|
|
/** |
|
* created by Harrison on 2022/05/26 |
|
**/ |
|
public class FineDbPermissionDetector extends CatchExceptionDetector { |
|
|
|
public FineDbPermissionDetector() { |
|
super(DetectorType.FINE_DB_PERMISSION, new FineDbPermissionConverter()); |
|
} |
|
}
|
|
|