package org.tanukisoftware.wrapper;

/*
 * Copyright (c) 1999, 2022 Tanuki Software, Ltd.
 * http://www.tanukisoftware.com
 * All rights reserved.
 *
 * This software is the proprietary information of Tanuki Software.
 * You shall use it only in accordance with the terms of the
 * license agreement you entered into with Tanuki Software.
 * http://wrapper.tanukisoftware.com/doc/english/licenseOverview.html
 */

public class WrapperLicenseError
    extends Error
{
    /*---------------------------------------------------------------
     * Constructors
     *-------------------------------------------------------------*/
    WrapperLicenseError( String message )
    {
        super( message );
    }
}
    
