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

com.maxifier.mxcache.provider.PropertyConvertationException Maven / Gradle / Ivy

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

import com.maxifier.mxcache.MxCacheException;

/**
 * @author Alexander Kochurov ([email protected])
 */
public class PropertyConvertationException extends MxCacheException {
    public PropertyConvertationException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy