2019-11-21 15:46:14 +08:00
|
|
|
/*
|
|
|
|
* @Descripttion:
|
|
|
|
* @version: 1.0
|
|
|
|
* @Author: zhangti
|
|
|
|
* @Date: 2019-09-29 15:53:08
|
|
|
|
* @LastEditors: sueRimn
|
2020-06-29 11:14:44 +08:00
|
|
|
* @LastEditTime: 2019-11-25 09:22:20
|
2019-11-21 15:46:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
export default class Errors{
|
|
|
|
|
|
|
|
constructor(error){
|
|
|
|
this.errorBox(error);
|
|
|
|
}
|
|
|
|
|
2020-06-29 11:14:44 +08:00
|
|
|
errorBox(error){
|
2019-11-21 15:46:14 +08:00
|
|
|
alert(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|