File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
presto-spi/src/main/java/com/facebook/presto/spi Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ public class PrestoException
20
20
{
21
21
private final ErrorCode errorCode ;
22
22
23
- public PrestoException (ErrorCodeSupplier errorCode , String message )
23
+ public PrestoException (ErrorCodeSupplier errorCodeSupplier , String message )
24
24
{
25
- this (errorCode , message , null );
25
+ this (errorCodeSupplier , message , null );
26
26
}
27
27
28
- public PrestoException (ErrorCodeSupplier errorCode , Throwable throwable )
28
+ public PrestoException (ErrorCodeSupplier errorCodeSupplier , Throwable throwable )
29
29
{
30
- this (errorCode , null , throwable );
30
+ this (errorCodeSupplier , null , throwable );
31
31
}
32
32
33
33
public PrestoException (ErrorCodeSupplier errorCodeSupplier , String message , Throwable cause )
You can’t perform that action at this time.
0 commit comments