|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| DestinationFileExistsException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | /* | |
| 2 | * DestinationFileExistsException.java | |
| 3 | * | |
| 4 | * Created on 24 December 2006, 21:56 | |
| 5 | * | |
| 6 | * To change this template, choose Tools | Template Manager | |
| 7 | * and open the template in the editor. | |
| 8 | */ | |
| 9 | ||
| 10 | package org.wiztools.wizcrypt; | |
| 11 | ||
| 12 | /** | |
| 13 | * | |
| 14 | * @author subhash | |
| 15 | */ | |
| 16 | public class DestinationFileExistsException extends Exception { | |
| 17 | ||
| 18 | /** Creates a new instance of DestinationFileExistsException */ | |
| 19 | 0 | public DestinationFileExistsException(final String msg) { |
| 20 | 0 | super(msg); |
| 21 | } | |
| 22 | ||
| 23 | } |
|
||||||||||