source: main/trunk/gli/src/org/greenstone/gatherer/file/ReadNotPermittedException.java@ 22772

Last change on this file since 22772 was 8505, checked in by mdewsnip, 19 years ago

You now get a sensible error message when attempting to copy a file you don't have permission to read.

  • Property svn:keywords set to Author Date Id Revision
File size: 211 bytes
Line 
1package org.greenstone.gatherer.file;
2
3import java.lang.Exception;
4
5public class ReadNotPermittedException
6 extends Exception
7{
8 public ReadNotPermittedException(String message) {
9 super(message);
10 }
11}
Note: See TracBrowser for help on using the repository browser.