Skip to content

Commit

Permalink
write a line into test.file
Browse files Browse the repository at this point in the history
  • Loading branch information
huifer committed Nov 15, 2023
1 parent e5ee286 commit a888325
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/spring/cs5654eb26-8357-11ee-8e72-acde48001122.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package example.micronaut;

import io.micronaut.runtime.Micronaut;

public class Application {

public static void main(String[] args) {
Micronaut.run(Application.class, args);
}
}
21 changes: 21 additions & 0 deletions docs/spring/cs56819be4-8357-11ee-8e72-acde48001122.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* Copyright 2009-2015 the original author or authors.
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* <p>
* Statement handlers.
*/
/**
* Statement handlers.
*/
package org.apache.ibatis.executor.statement;
41 changes: 41 additions & 0 deletions docs/spring/cs56aea5d0-8357-11ee-8e72-acde48001122.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/**
* Copyright 2009-2015 the original author or authors.
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ibatis.jdbc;

/**
* @author Clinton Begin
*/
public class RuntimeSqlException extends RuntimeException {

private static final long serialVersionUID = 5224696788505678598L;

public RuntimeSqlException() {
super();
}

public RuntimeSqlException(String message) {
super(message);
}

public RuntimeSqlException(String message, Throwable cause) {
super(message, cause);
}

public RuntimeSqlException(Throwable cause) {
super(cause);
}

}

0 comments on commit a888325

Please sign in to comment.