完善修改密码

pull/65/head
awenes 2023-10-06 19:53:08 +08:00
parent 265ef73cf3
commit cb0104eb22
1 changed files with 2 additions and 2 deletions

View File

@ -39,11 +39,11 @@ public class NoneStorage extends AbstractStorage {
@Override @Override
public String upload(@NotNull String fileName, public String upload(@NotNull String fileName,
InputStream inputStream) throws StorageProviderException { InputStream inputStream) throws StorageProviderException {
throw new StorageProviderException("暂未配置存储提供商或提供商异常,请联系管理员"); throw new StorageProviderException("暂未配置存储提供商,请联系管理员");
} }
@Override @Override
public String download(String path) throws StorageProviderException { public String download(String path) throws StorageProviderException {
throw new StorageProviderException("暂未配置存储提供商或提供商异常,请联系管理员"); throw new StorageProviderException("暂未配置存储提供商,请联系管理员");
} }
} }