Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.apache.cassandra.db.marshal.AbstractType;

/**
* Thrown when an operation problem has occured (e.g. division by zero with integer).
* Thrown when an operation problem has occurred (e.g. division by zero with integer).
*/
public final class OperationExecutionException extends FunctionExecutionException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ public static synchronized void set(DiskErrorsHandler newInstance) throws Config
}
catch (Throwable t)
{
logger.warn("Exception occured while closing disk error handler of class " + oldInstance.getClass().getName(), t);
logger.warn("Exception occurred while closing disk error handler of class " + oldInstance.getClass().getName(), t);
}
}
catch (Throwable t)
{
throw new ConfigurationException("Exception occured while initializing disk error handler of class " + newInstance.getClass().getName(), t);
throw new ConfigurationException("Exception occurred while initializing disk error handler of class " + newInstance.getClass().getName(), t);
}
}

Expand Down