(msg: String, vm: &VirtualMachine)
| 849 | struct Base64DecodeError(base64::DecodeError); |
| 850 | |
| 851 | fn new_binascii_error(msg: String, vm: &VirtualMachine) -> PyBaseExceptionRef { |
| 852 | vm.new_exception_msg(decl::error_type(vm), msg.into()) |
| 853 | } |
| 854 | |
| 855 | impl ToPyException for Base64DecodeError { |
| 856 | fn to_pyexception(&self, vm: &VirtualMachine) -> PyBaseExceptionRef { |
no test coverage detected