1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

bench: remove custom error types (#9301)

Fixes #9253
This commit is contained in:
William Perron 2021-01-27 19:50:14 -08:00 committed by GitHub
parent 1698bc64c1
commit f858b653be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::serde_json::{self, Value};
use serde::Serialize;
use std::time::SystemTime;
@ -491,36 +492,4 @@ fn main() -> Result<()> {
Ok(())
}
#[derive(Debug)]
enum Error {
Io(std::io::Error),
Serde(serde_json::error::Error),
FromUtf8(std::string::FromUtf8Error),
Walkdir(walkdir::Error),
}
impl From<std::io::Error> for Error {
fn from(ioe: std::io::Error) -> Self {
Error::Io(ioe)
}
}
impl From<serde_json::error::Error> for Error {
fn from(sje: serde_json::error::Error) -> Self {
Error::Serde(sje)
}
}
impl From<std::string::FromUtf8Error> for Error {
fn from(fue: std::string::FromUtf8Error) -> Self {
Error::FromUtf8(fue)
}
}
impl From<walkdir::Error> for Error {
fn from(wde: walkdir::Error) -> Self {
Error::Walkdir(wde)
}
}
pub(crate) type Result<T> = std::result::Result<T, Error>;
pub(crate) type Result<T> = std::result::Result<T, AnyError>;