Logo white

Softec-Workflow / ProxyServer ADT

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Snippets
  • ProxyServer-ADT
  • src
  • it
  • softecspa
  • fileproxy
  • cache
  • CacheException.java
  • Versione 1.0.0 ...
    2c3a8d7d
    git-svn-id: http://svn.softecspa.it/desktopmate/DesktopMate%202.0/FileProxyServer/trunk@13298 edf0334f-4afc-450a-8f92-fe1409970e7d
    m.veroni authored
    2014-06-24 08:29:19 +0000  
    Browse Code ยป
CacheException.java 355 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package it.softecspa.fileproxy.cache;

@SuppressWarnings("serial")
public class CacheException extends Throwable {

	
	public CacheException(String message) {
		super(message);		
	}

	public CacheException(Throwable cause) {
		super(cause);
	}

	public CacheException(String message, Throwable cause) {
		super(message, cause);		
	}

}