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

com.aliyun.odps.exceptions.SchemaMismatchException Maven / Gradle / Ivy

package com.aliyun.odps.exceptions;

import java.io.IOException;

/**
 * @author dingxin ([email protected])
 */
public class SchemaMismatchException extends IOException {

  private final String latestSchemaVersion;

  public SchemaMismatchException(String msg, String latestSchemaVersion) {
    super(msg);
    this.latestSchemaVersion = latestSchemaVersion;
  }

  public String getLatestSchemaVersion() {
    return latestSchemaVersion;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy