mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-05 12:34:54 -06:00
24a7d13e1b
- rename files - rename function names
11 lines
306 B
PowerShell
11 lines
306 B
PowerShell
class ErroredPackage {
|
|
[string]$PackageName
|
|
[string]$ErrorMessage
|
|
ErroredPackage() { $this.Init(@{} )}
|
|
# Constructor for packages that have errored out
|
|
ErroredPackage([string]$pkgName, [string]$reason) {
|
|
$this.PackageName = $pkgName
|
|
$this.ErrorMessage = $reason
|
|
}
|
|
}
|