TxtBundle.java

package it.fe.cassano.cryptoapi.filetypes;

import java.nio.file.InvalidPathException;
import java.nio.file.Paths;

import it.fe.cassano.cryptoapi.Bundle;

public class TxtBundle extends Bundle {
	
//	TxtBundle(final Path filePath)
//	{
//		super(filePath);
//	}
	
	TxtBundle(final String fileName) throws InvalidPathException
	{
	    super(Paths.get(fileName));
	}



}