package com.quantum.adapters;

public class FeatureNotSupported extends Error {
    public FeatureNotSupported(String error) {
        super(error);
    }
}