Coverage Summary for Class: VMException (org.ethereum.vm.exception)

Class Class, % Method, % Line, %
VMException 0% (0/1) 0% (0/4) 0% (0/8)


1 package org.ethereum.vm.exception; 2 /* 3  * This file is part of RskJ 4  * Copyright (C) 2020 RSK Labs Ltd. 5  * (derived from ethereumJ library, Copyright (c) 2016 <ether.camp>) 6  * 7  * This program is free software: you can redistribute it and/or modify 8  * it under the terms of the GNU Lesser General Public License as published by 9  * the Free Software Foundation, either version 3 of the License, or 10  * (at your option) any later version. 11  * 12  * This program is distributed in the hope that it will be useful, 13  * but WITHOUT ANY WARRANTY; without even the implied warranty of 14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15  * GNU Lesser General Public License for more details. 16  * 17  * You should have received a copy of the GNU Lesser General Public License 18  * along with this program. If not, see <http://www.gnu.org/licenses/>. 19  */ 20  21 /** 22  * @author Patricio Gallardo 23  * @since 30.11.2020 24  */ 25 public class VMException extends Exception { 26  27  public VMException() { 28  } 29  30  public VMException(String message) { 31  super(message); 32  } 33  34  public VMException(String message, Throwable cause) { 35  super(message, cause); 36  } 37  38  public VMException(Throwable cause) { 39  super(cause); 40  } 41 }