123456789101112131415161718 |
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package exception;
- /**
- *
- * @author EUGENIO CARVALHO
- */
- public class ImportedException extends Exception {
-
- public ImportedException(String path) {
- super(String.format("Pacote '%s' importado previamente", path));
- }
- }
|