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

com.maxifier.mxcache.transform.InvalidTransformAnnotations Maven / Gradle / Ivy

/*
 * Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
 */
package com.maxifier.mxcache.transform;

import com.maxifier.mxcache.MxCacheException;

/**
 * @author Alexander Kochurov ([email protected])
*/
public class InvalidTransformAnnotations extends MxCacheException {
    public InvalidTransformAnnotations(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy