//This file generated automatically from the MARIUS LP system, please do not edit.

public class CuidadorLongitud {

private int _max;
public CuidadorLongitud(int max) { _max = max; }
public void cuidar(String s) { 
    if (s.length() > _max) {
      throw new RuntimeException("Longitud excedida");
    }
}

} //End of class CuidadorLongitud
