01: /*
02: * Created on Sep 23, 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package com.mysql.jdbc;
08:
09: import java.sql.SQLException;
10:
11: class OperationNotSupportedException extends SQLException {
12: OperationNotSupportedException() {
13: super (
14: Messages.getString("RowDataDynamic.10"), SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$
15: }
16: }
|