/*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
public class FromTableColumnFunction extends FunctionBase {
/**
- * @return 1 (maximum argumenst for the from-table-column function)
+ * @return 1 (maximum arguments for the from-table-column function)
*/
public int nbArgs() {
return 1;
PropertyInfo pInfo) throws PropertyException {
String propName = args[0].getString();
if (propName == null) {
- throw new PropertyException("Incorrect parameter to from-table-column function");
+ //TODO Determine on which property this method was called.
}
- throw new PropertyException("from-table-column unimplemented!");
+ throw new PropertyException("The from-table-column() function is not implemented, yet!");
}
}