All Downloads are FREE. Search and download functionalities are using the official Maven repository.

IceUtil.FileLockException Maven / Gradle / Ivy

Go to download

Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms

There is a newer version: 3.7.10
Show newest version
// **********************************************************************
//
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

package IceUtil;

public class FileLockException extends RuntimeException implements Cloneable
{
    public FileLockException()
    {
    }

    public FileLockException(String path)
    {
        this.path = path;
    }

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

    public FileLockException(String path, Throwable cause)
    {
        super(cause);
        this.path = path;
    }

    @Override
    public FileLockException clone()
    {
	FileLockException c = null;
	try
	{
	    c = (FileLockException)super.clone();
	}
	catch(CloneNotSupportedException ex)
	{
	    assert false;
	}
	return c; 
    }

    public String
    ice_name()
    {
        return "IceUtil::FileLockException";
    }

    @Override
    public String
    toString()
    {
        java.io.StringWriter sw = new java.io.StringWriter();
        java.io.PrintWriter pw = new java.io.PrintWriter(sw);
        IceUtilInternal.OutputBase out = new IceUtilInternal.OutputBase(pw);
        out.setUseTab(false);
        out.print(getClass().getName());
        out.inc();
        IceInternal.ValueWriter.write(this, out);
        pw.flush();
        return sw.toString();
    }

    public String path;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy