blob: b0eeb23cb7e98ece5462922a6d2b2a99aff0cd5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
//! ref: composer/src/Composer/Package/Loader/InvalidPackageException.php
use shirabe_php_shim::{Exception, PhpMixed};
#[derive(Debug)]
pub struct InvalidPackageException {
inner: Exception,
errors: Vec<String>,
warnings: Vec<String>,
data: Vec<PhpMixed>,
}
impl InvalidPackageException {
pub fn new(errors: Vec<String>, warnings: Vec<String>, data: Vec<PhpMixed>) -> Self {
let message = format!(
"Invalid package information: \n{}",
errors
.iter()
.chain(warnings.iter())
.cloned()
.collect::<Vec<_>>()
.join("\n")
);
Self {
inner: Exception { message, code: 0 },
errors,
warnings,
data,
}
}
pub fn get_data(&self) -> &[PhpMixed] {
&self.data
}
pub fn get_errors(&self) -> &[String] {
&self.errors
}
pub fn get_warnings(&self) -> &[String] {
&self.warnings
}
}
|