blob: c59b793503aff42cdc173c9a976b0c24d29de988 (
plain)
1
2
3
4
5
6
7
|
//! ref: composer/src/Composer/Repository/RepositorySecurityException.php
use shirabe_php_shim::Exception;
/// Thrown when a security problem, like a broken or missing signature
#[derive(Debug)]
pub struct RepositorySecurityException(pub Exception);
|