|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IntrospectionSystemException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package com.agical.rmock.core.hub; | |
| 2 | ||
| 3 | import java.beans.IntrospectionException; | |
| 4 | ||
| 5 | import com.agical.rmock.core.exception.RMockSystemException; | |
| 6 | ||
| 7 | public class IntrospectionSystemException extends RMockSystemException { | |
| 8 | /** | |
| 9 | * | |
| 10 | */ | |
| 11 | private static final long serialVersionUID = 1L; | |
| 12 | ||
| 13 | 0 | public IntrospectionSystemException(String s) { |
| 14 | 0 | super(s); |
| 15 | } | |
| 16 | ||
| 17 | 0 | public IntrospectionSystemException(IntrospectionException e) { |
| 18 | 0 | super(e); |
| 19 | } | |
| 20 | ||
| 21 | } |
|
||||||||||